mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 05:36:00 +00:00
12 lines
346 B
JavaScript
12 lines
346 B
JavaScript
module.exports = `
|
|
select
|
|
table_name as "pureName",
|
|
table_schema as "schemaName",
|
|
view_definition as "createSql",
|
|
md5(view_definition) as "hashCode"
|
|
from
|
|
information_schema.views
|
|
where table_schema != 'information_schema' and table_schema != 'pg_catalog'
|
|
and ('views:' || table_schema || '.' || table_name) =OBJECT_ID_CONDITION
|
|
`;
|