This commit is contained in:
mgorsk1 2025-03-18 12:53:50 +01:00 committed by GitHub
parent cb98269dea
commit 09743368b0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -142,7 +142,7 @@ def get_dbt_raw_query(mnode) -> Optional[str]:
return mnode.raw_code
if hasattr(mnode, RawQueriesEnum.RAW_SQL.value) and mnode.raw_sql:
return mnode.raw_sql
logger.debug(f"Unable to get DBT compiled query for node - {mnode.name}")
logger.debug(f"Unable to get DBT raw query for node - {mnode.name}")
return None