Update 28_to_29.sql

GITHUB_PR_NUMBER: 7335
GITHUB_PR_URL: https://github.com/hasura/graphql-engine/pull/7335

https://github.com/hasura/graphql-engine-mono/pull/1982

Co-authored-by: Eduardo <5448062+eduardomazolini@users.noreply.github.com>
GitOrigin-RevId: a7d6d6548f742a3389fa270bfc0446622356f95c
This commit is contained in:
hasura-bot 2021-08-09 22:05:50 +05:30
parent 74704801cb
commit 5e17966ce7

View File

@ -74,7 +74,7 @@ CREATE VIEW hdb_catalog.hdb_table_info_agg AS
WHERE "column".attrelid = "table".oid
-- columns where attnum <= 0 are special, system-defined columns
AND "column".attnum > 0
-- dropped columns still exist in the system catalog as “zombie” columns, so ignore those
-- dropped columns still exist in the system catalog as "zombie" columns, so ignore those
AND NOT "column".attisdropped
) columns ON true
@ -128,4 +128,4 @@ CREATE VIEW hdb_catalog.hdb_table_info_agg AS
) foreign_key_constraints ON true
-- all these identify table-like things
WHERE "table".relkind IN ('r', 't', 'v', 'm', 'f', 'p');
WHERE "table".relkind IN ('r', 't', 'v', 'm', 'f', 'p');