Skip to content

Commit

Permalink
Test fix: don't use alias in where clause
Browse files Browse the repository at this point in the history
  • Loading branch information
courtneyholcomb committed Oct 11, 2023
1 parent 87c566e commit 20cc790
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,6 @@ integration_test:
SELECT
u.home_state AS user__home_state
FROM {{ source_schema }}.dim_users u
WHERE user__home_state = 'CA'
WHERE u.home_state = 'CA'
GROUP BY
u.home_state

0 comments on commit 20cc790

Please sign in to comment.