mirror of
https://github.com/datahub-project/datahub.git
synced 2025-12-16 20:48:35 +00:00
fix(ingest/bigquery): fix missing materialized views (#7511)
Co-authored-by: Harshal Sheth <hsheth2@gmail.com>
This commit is contained in:
parent
e93a17e917
commit
df2c62fa84
@ -233,7 +233,7 @@ FROM
|
|||||||
and t.TABLE_NAME = tos.TABLE_NAME
|
and t.TABLE_NAME = tos.TABLE_NAME
|
||||||
and tos.OPTION_NAME = "description"
|
and tos.OPTION_NAME = "description"
|
||||||
WHERE
|
WHERE
|
||||||
table_type in ('VIEW MATERIALIZED', 'VIEW')
|
table_type in ('MATERIALIZED VIEW', 'VIEW')
|
||||||
order by
|
order by
|
||||||
table_schema ASC,
|
table_schema ASC,
|
||||||
table_name ASC
|
table_name ASC
|
||||||
@ -255,7 +255,7 @@ FROM
|
|||||||
and t.TABLE_NAME = tos.TABLE_NAME
|
and t.TABLE_NAME = tos.TABLE_NAME
|
||||||
and tos.OPTION_NAME = "description"
|
and tos.OPTION_NAME = "description"
|
||||||
WHERE
|
WHERE
|
||||||
table_type in ('VIEW MATERIALIZED', 'VIEW')
|
table_type in ('MATERIALIZED VIEW', 'VIEW')
|
||||||
order by
|
order by
|
||||||
table_schema ASC,
|
table_schema ASC,
|
||||||
table_name ASC
|
table_name ASC
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user