Skip to content

Commit

Permalink
Fix column alias
Browse files Browse the repository at this point in the history
  • Loading branch information
ifoukarakis committed Oct 18, 2024
1 parent d59b54b commit ed7209e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
with events_deduped as (
select
{{ dbt_utils.star(from=source('rudder_support', 'base_events')) }} b
{{ dbt_utils.star(from=source('rudder_support', 'base_events')) }}
from
{{ source('rudder_support', 'base_events') }}
{{ source('rudder_support', 'base_events') }} b
where
not exists (select 1 from {{ ref('base_events_delta') }} d where d.id = b.id)

Expand Down

0 comments on commit ed7209e

Please sign in to comment.