Skip to content

Commit

Permalink
fix(bigquery-usage): fix audit metadata query template
Browse files Browse the repository at this point in the history
The audit logs template was generating an invalid query responsible for stopping the ingest process.
  • Loading branch information
PatrickfBraz committed May 25, 2022
1 parent e944c2e commit 0c747e4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -203,7 +203,7 @@ def bigquery_audit_metadata_query_template(
"""
+ """
WHERE
_TABLE_SUFFIX BETWEEN "{start_date}" AND "{end_date}" AND
_TABLE_SUFFIX BETWEEN "{start_date}" AND "{end_date}"
"""
)
else:
Expand Down

0 comments on commit 0c747e4

Please sign in to comment.