mirror of
https://github.com/datahub-project/datahub.git
synced 2025-11-03 12:16:10 +00:00
feat(ingestion/bigquery): support for table clones (#10274)
Co-authored-by: Equipo DataOps <cagutierra@unal.edu.co>
This commit is contained in:
parent
ec21b018f1
commit
cb6d744ae7
@ -74,7 +74,7 @@ FROM
|
|||||||
table_name) as p on
|
table_name) as p on
|
||||||
t.table_name = p.table_name
|
t.table_name = p.table_name
|
||||||
WHERE
|
WHERE
|
||||||
table_type in ('{BigqueryTableType.BASE_TABLE}', '{BigqueryTableType.EXTERNAL}')
|
table_type in ('{BigqueryTableType.BASE_TABLE}', '{BigqueryTableType.EXTERNAL}', '{BigqueryTableType.CLONE}')
|
||||||
{{table_filter}}
|
{{table_filter}}
|
||||||
order by
|
order by
|
||||||
table_schema ASC,
|
table_schema ASC,
|
||||||
@ -101,7 +101,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 ('{BigqueryTableType.BASE_TABLE}', '{BigqueryTableType.EXTERNAL}')
|
table_type in ('{BigqueryTableType.BASE_TABLE}', '{BigqueryTableType.EXTERNAL}', '{BigqueryTableType.CLONE}')
|
||||||
{{table_filter}}
|
{{table_filter}}
|
||||||
order by
|
order by
|
||||||
table_schema ASC,
|
table_schema ASC,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user