You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: hoptimator-k8s/src/test/resources/k8s-ddl.id
+42Lines changed: 42 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -203,3 +203,45 @@ spec:
203
203
upgradeMode: stateless
204
204
state: running
205
205
!specify AD_CLICKS
206
+
207
+
create or replace materialized view ads."PAGE_VIEWS$forward-field-order" as select CAMPAIGN_URN as PAGE_URN, MEMBER_URN as MEMBER_URN from ads.ad_clicks;
- CREATE TABLE IF NOT EXISTS `ADS`.`AD_CLICKS` (`CAMPAIGN_URN` VARCHAR, `MEMBER_URN` VARCHAR) WITH ('connector'='datagen', 'number-of-rows'='10')
219
+
- CREATE DATABASE IF NOT EXISTS `ADS` WITH ()
220
+
- CREATE TABLE IF NOT EXISTS `ADS`.`PAGE_VIEWS` (`PAGE_URN` VARCHAR, `MEMBER_URN` VARCHAR) WITH ('connector'='blackhole')
221
+
- INSERT INTO `ADS`.`PAGE_VIEWS` (`PAGE_URN`, `MEMBER_URN`) SELECT * FROM `ADS`.`AD_CLICKS`
222
+
jarURI: file:///opt/hoptimator-flink-runner.jar
223
+
parallelism: 1
224
+
upgradeMode: stateless
225
+
state: running
226
+
!specify PAGE_VIEWS
227
+
228
+
create or replace materialized view ads."PAGE_VIEWS$reverse-field-order" as select MEMBER_URN as MEMBER_URN, CAMPAIGN_URN as PAGE_URN from ads.ad_clicks;
0 commit comments