mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-22 21:36:00 +00:00
10 lines
442 B
JavaScript
10 lines
442 B
JavaScript
module.exports = `
|
|
select infoTables.table_schema as "schema_name", infoTables.table_name as "pure_name"
|
|
from information_schema.tables infoTables
|
|
where infoTables.table_type not like '%VIEW%'
|
|
and ('tables:' || infoTables.table_schema || '.' || infoTables.table_name) =OBJECT_ID_CONDITION
|
|
and infoTables.table_schema <> 'pg_internal'
|
|
and infoTables.table_schema !~ '^_timescaledb_'
|
|
and infoTables.table_schema =SCHEMA_NAME_CONDITION
|
|
`;
|