Skip to content

Commit

Permalink
Fix check query syntax for BigQuery
Browse files Browse the repository at this point in the history
  • Loading branch information
courtneyholcomb committed May 17, 2024
1 parent c8cdf36 commit 319ac77
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests_metricflow/integration/test_cases/itest_metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2124,7 +2124,7 @@ integration_test:
, SUM(a.txn_count) AS txn_count
FROM {{ source_schema }}.account_month_txns a
LEFT OUTER JOIN {{ source_schema }}.bridge_table b
ON (a.account_id = b.account_id) AND (DATE_TRUNC('day', a.ds_partitioned) = DATE_TRUNC('day', b.ds_partitioned))
ON (a.account_id = b.account_id) AND ({{ render_date_trunc("a.ds_partitioned", TimeGranularity.DAY) }} = {{ render_date_trunc("b.ds_partitioned", TimeGranularity.DAY) }})
LEFT OUTER JOIN {{ source_schema }}.customer_other_data c
ON b.customer_id = c.customer_id
GROUP BY c.customer_third_hop_id
Expand Down

0 comments on commit 319ac77

Please sign in to comment.