-- 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;