MINOR: Add support for clone queries in bigquery (#23155)

This commit is contained in:
Mayur Singal 2025-09-01 10:20:09 +05:30 committed by GitHub
parent d956087968
commit df6bf20179
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -42,6 +42,7 @@ class BigqueryLineageSource(
AND (
statement_type IN ("MERGE", "CREATE_TABLE_AS_SELECT", "UPDATE")
OR (statement_type = "INSERT" and UPPER(query) like '%%INSERT%%INTO%%SELECT%%')
OR (statement_type = "CREATE_TABLE" and UPPER(query) like '%%CLONE%%')
)
"""