0cd61093b9
* Display empty schemas on the sidebar * Add schemas fetching test * Skip pg_temp schemas * Exclude pg_temp tables from other queries
10 lines
187 B
SQL
10 lines
187 B
SQL
SELECT
|
|
schema_name
|
|
FROM
|
|
information_schema.schemata
|
|
WHERE
|
|
schema_name NOT IN ('information_schema', 'pg_catalog')
|
|
AND schema_name !~ '^pg_(toast|temp)'
|
|
ORDER BY
|
|
schema_name ASC
|