mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-18 19:59:48 +08:00
This changes the license text for SQL files to be identical with the license text for C files.
17 lines
732 B
SQL
17 lines
732 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.
|
|
|
|
\c :TEST_DBNAME
|
|
|
|
--list all extension functions in public schema
|
|
SELECT DISTINCT proname
|
|
FROM pg_proc
|
|
WHERE OID IN (
|
|
SELECT objid
|
|
FROM pg_catalog.pg_depend WHERE refclassid = 'pg_catalog.pg_extension'::pg_catalog.regclass AND
|
|
refobjid = (select oid from pg_extension where extname='timescaledb') AND
|
|
deptype = 'e' and classid = 'pg_catalog.pg_proc'::regclass
|
|
) AND pronamespace = 'public'::regnamespace
|
|
ORDER BY proname;
|