mirror of
https://github.com/timescale/timescaledb.git
synced 2025-05-18 03:23:37 +08:00
This commit moves a lot of test setup logic to runner.sh. Also passes the right commands to the regression infrastructure to create appropriate users and run tests as a regular user.
13 lines
543 B
SQL
13 lines
543 B
SQL
\c single
|
|
|
|
--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;
|