mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-22 12:16:01 +00:00
12 lines
353 B
JavaScript
12 lines
353 B
JavaScript
module.exports = `
|
|
select
|
|
table_name as "pure_name",
|
|
table_schema as "schema_name",
|
|
view_definition as "create_sql",
|
|
md5(view_definition) as "hash_code"
|
|
from
|
|
information_schema.views
|
|
where table_schema !~ '^_timescaledb_' and table_schema =SCHEMA_NAME_CONDITION
|
|
and ('views:' || table_schema || '.' || table_name) =OBJECT_ID_CONDITION
|
|
`;
|