Skip to content

Commit

Permalink
Fix integration test SQL syntax for Trino compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
courtneyholcomb committed Apr 2, 2024
1 parent 42e6d60 commit c3c16ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_cases/itest_metrics.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -1915,7 +1915,7 @@ integration_test:
, SUM(1) AS bookings
FROM {{ source_schema }}.fct_bookings
GROUP BY
listing
listing_id
) subq_12
ON
subq_6.listing = subq_12.listing
Expand Down Expand Up @@ -1946,7 +1946,7 @@ integration_test:
, SUM(1) AS bookings
FROM {{ source_schema }}.fct_bookings
GROUP BY
listing
listing_id
) subq_12
ON
subq_6.listing = subq_12.listing
Expand Down

0 comments on commit c3c16ab

Please sign in to comment.