mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-30 06:53:58 +00:00
fixed incremental analysis of postre view columns
This commit is contained in:
@@ -14,6 +14,10 @@ where
|
|||||||
table_schema <> 'information_schema'
|
table_schema <> 'information_schema'
|
||||||
and table_schema <> 'pg_catalog'
|
and table_schema <> 'pg_catalog'
|
||||||
and table_schema !~ '^pg_toast'
|
and table_schema !~ '^pg_toast'
|
||||||
and ('tables:' || table_schema || '.' || table_name) =OBJECT_ID_CONDITION
|
and (
|
||||||
|
('tables:' || table_schema || '.' || table_name) =OBJECT_ID_CONDITION
|
||||||
|
or
|
||||||
|
('views:' || table_schema || '.' || table_name) =OBJECT_ID_CONDITION
|
||||||
|
)
|
||||||
order by ordinal_position
|
order by ordinal_position
|
||||||
`;
|
`;
|
||||||
Reference in New Issue
Block a user