mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-22 12:16:01 +00:00
8 lines
282 B
JavaScript
8 lines
282 B
JavaScript
module.exports = `
|
|
select
|
|
f_table_schema as "schema_name",
|
|
f_table_name as "pure_name",
|
|
f_geometry_column as "column_name"
|
|
from public.geometry_columns
|
|
where ('tables:' || f_table_schema || '.' || f_table_name) =OBJECT_ID_CONDITION and f_table_schema =SCHEMA_NAME_CONDITION
|
|
`; |