mirror of
https://github.com/open-metadata/OpenMetadata.git
synced 2026-01-05 20:17:07 +00:00
MINOR: Fix multiline insert query stored procedure lineage (#15578)
This commit is contained in:
parent
dfbc9deb9c
commit
ed41f25f18
@ -138,7 +138,7 @@ class StoredProcedureMixin(ABC):
|
||||
return True
|
||||
|
||||
if query_type == "INSERT" and re.search(
|
||||
"^.*insert.*into.*select.*$", query_text, re.IGNORECASE
|
||||
"^.*insert.*into.*select.*$", query_text.replace("\n", " "), re.IGNORECASE
|
||||
):
|
||||
return True
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user