Skip to content

Commit

Permalink
fix: rename to_artifact_id to artifact_id in event tables (#1494)
Browse files Browse the repository at this point in the history
  • Loading branch information
ryscheng authored May 22, 2024
1 parent 8506739 commit 14f3000
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}}

select
to_artifact_id,
to_artifact_id as artifact_id,
event_type,
TIMESTAMP_TRUNC(time, day) as bucket_day,
SUM(amount) as amount
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}}

select
to_artifact_id,
to_artifact_id as artifact_id,
event_type,
TIMESTAMP_TRUNC(bucket_day, month) as bucket_month,
SUM(amount) as amount
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
}}

select
to_artifact_id,
to_artifact_id as artifact_id,
event_type,
TIMESTAMP_TRUNC(bucket_day, week) as bucket_week,
SUM(amount) as amount
Expand Down

0 comments on commit 14f3000

Please sign in to comment.