fix(ingest/bigquery): fix missing materialized views (#7511)

Co-authored-by: Harshal Sheth <hsheth2@gmail.com>
This commit is contained in:
Mayuri Nehate 2023-03-08 04:10:08 +05:30 committed by GitHub
parent e93a17e917
commit df2c62fa84
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -233,7 +233,7 @@ FROM
and t.TABLE_NAME = tos.TABLE_NAME
and tos.OPTION_NAME = "description"
WHERE
table_type in ('VIEW MATERIALIZED', 'VIEW')
table_type in ('MATERIALIZED VIEW', 'VIEW')
order by
table_schema ASC,
table_name ASC
@ -255,7 +255,7 @@ FROM
and t.TABLE_NAME = tos.TABLE_NAME
and tos.OPTION_NAME = "description"
WHERE
table_type in ('VIEW MATERIALIZED', 'VIEW')
table_type in ('MATERIALIZED VIEW', 'VIEW')
order by
table_schema ASC,
table_name ASC