fixed incremental analysis of postre view columns

This commit is contained in:
Jan Prochazka
2021-05-28 15:51:36 +02:00
parent fcaac322f2
commit 94804957e5

View File

@@ -14,6 +14,10 @@ where
table_schema <> 'information_schema'
and table_schema <> 'pg_catalog'
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
`;