Skip to content

Commit ef2a357

Browse files
committed
fix: move order by after filter_exceptions() to fix cross-adapter syntax error
filter_exceptions() emits a WHERE clause; ORDER BY must come after WHERE.
1 parent cd776bf commit ef2a357

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

models/marts/dag/fct_direct_join_to_source.sql

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,6 @@ final as (
3939
)
4040

4141
select * from final
42-
order by child
4342

44-
{{ filter_exceptions() }}
43+
{{ filter_exceptions() }}
44+
order by child

0 commit comments

Comments
 (0)