Skip to content

Commit

Permalink
fix check
Browse files Browse the repository at this point in the history
  • Loading branch information
tabVersion committed May 1, 2024
1 parent 3579aae commit d0ad9eb
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 d0ad9eb

Please sign in to comment.