-
Notifications
You must be signed in to change notification settings - Fork 111
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added integration test to check for commas on sql without import ctes
- Loading branch information
1 parent
58ad058
commit ca67cea
Showing
2 changed files
with
10 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
select *, 2 as col2 | ||
from {{ ref('model_without_import_ctes') }} | ||
from {{ ref('model_without_import_ctes') }} as m | ||
left join (select 2 as col_a from {{ ref('data__a_relation') }}) as a on a.col_a = m.id | ||
where id = 1 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters