Skip to content

Commit

Permalink
fix: name mis-align for kinesis-s3-source in main cron (#16569)
Browse files Browse the repository at this point in the history
  • Loading branch information
tabVersion authored May 2, 2024
1 parent 2895f48 commit 19f1452
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions integration_tests/kinesis-s3-source/create_mv.sql
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
CREATE MATERIALIZED VIEW ad_ctr AS
CREATE MATERIALIZED VIEW ad_ctr_mv AS
SELECT
ad_clicks.ad_id AS ad_id,
ad_clicks.clicks_count :: NUMERIC / ad_impressions.impressions_count AS ctr
Expand All @@ -23,7 +23,7 @@ FROM
ai.ad_id
) AS ad_clicks ON ad_impressions.ad_id = ad_clicks.ad_id;

CREATE MATERIALIZED VIEW ad_ctr_5min AS
CREATE MATERIALIZED VIEW ad_ctr_5min_mv AS
SELECT
ac.ad_id AS ad_id,
ac.clicks_count :: NUMERIC / ai.impressions_count AS ctr,
Expand Down
2 changes: 1 addition & 1 deletion integration_tests/kinesis-s3-source/data_check
Original file line number Diff line number Diff line change
@@ -1 +1 @@
ad_impression,ad_click,ad_ctr,ad_ctr_5min
ad_ctr,ad_ctr_5min

0 comments on commit 19f1452

Please sign in to comment.