mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-28 09:46:44 +08:00
This changes the license text for SQL files to be identical with the license text for C files.
12 lines
433 B
SQL
12 lines
433 B
SQL
-- This file and its contents are licensed under the Apache License 2.0.
|
|
-- Please see the included NOTICE for copyright information and
|
|
-- LICENSE-APACHE for a copy of the license.
|
|
|
|
--test that the extension is deactivated during upgrade
|
|
SELECT 1;
|
|
SELECT 1;
|
|
SELECT 1;
|
|
SELECT 1;
|
|
CREATE OR REPLACE FUNCTION mock_function() RETURNS VOID
|
|
AS '$libdir/timescaledb-mock-5', 'ts_mock_function' LANGUAGE C IMMUTABLE STRICT PARALLEL SAFE;
|