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
let expected = r#"{"uri":"protocol:/path/to/somewhere","timestamp_column":"ts","mode":"follow","snapshot_filter":"ts BETWEEN '2005-01-01 00:00:00' AND '2010-12-31 23:59:59'","version":null,"datetime":"2010-12-31 00:00:00Z","customoption1":"val1","customoption2":"val2"}"#;
Copy file name to clipboardExpand all lines: crates/pipeline_manager/src/integration_test.rs
+8-8Lines changed: 8 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -755,7 +755,7 @@ async fn deploy_pipeline() {
755
755
let config = setup().await;
756
756
let _ = deploy_pipeline_without_connectors(
757
757
&config,
758
-
"create table t1(c1 integer); create view v1 as select * from t1;",
758
+
"create table t1(c1 integer) with ('materialized' = 'true'); create view v1 as select * from t1;",
759
759
)
760
760
.await;
761
761
@@ -930,7 +930,7 @@ async fn json_ingress() {
930
930
let config = setup().await;
931
931
let id = deploy_pipeline_without_connectors(
932
932
&config,
933
-
"create table t1(c1 integer, c2 bool, c3 varchar); create view v1 as select * from t1;",
933
+
"create table t1(c1 integer, c2 bool, c3 varchar) with ('materialized' = 'true'); create materialized view v1 as select * from t1;",
934
934
)
935
935
.await;
936
936
@@ -1101,7 +1101,7 @@ async fn map_column() {
1101
1101
let config = setup().await;
1102
1102
let id = deploy_pipeline_without_connectors(
1103
1103
&config,
1104
-
"create table t1(c1 integer, c2 bool, c3 MAP<varchar, varchar>); create view v1 as select * from t1;",
1104
+
"create table t1(c1 integer, c2 bool, c3 MAP<varchar, varchar>) with ('materialized' = 'true'); create view v1 as select * from t1;",
1105
1105
)
1106
1106
.await;
1107
1107
@@ -1159,7 +1159,7 @@ async fn parse_datetime() {
1159
1159
let config = setup().await;
1160
1160
let _ = deploy_pipeline_without_connectors(
1161
1161
&config,
1162
-
"create table t1(t TIME, ts TIMESTAMP, d DATE);",
1162
+
"create table t1(t TIME, ts TIMESTAMP, d DATE) with ('materialized' = 'true');",
1163
1163
)
1164
1164
.await;
1165
1165
@@ -1208,7 +1208,7 @@ async fn quoted_columns() {
1208
1208
let config = setup().await;
1209
1209
let _ = deploy_pipeline_without_connectors(
1210
1210
&config,
1211
-
r#"create table t1("c1" integer not null, "C2" bool not null, "😁❤" varchar not null, "αβγ" boolean not null, ΔΘ boolean not null)"#,
1211
+
r#"create table t1("c1" integer not null, "C2" bool not null, "😁❤" varchar not null, "αβγ" boolean not null, ΔΘ boolean not null) with ('materialized' = 'true')"#,
1212
1212
)
1213
1213
.await;
1214
1214
@@ -1258,7 +1258,7 @@ async fn primary_keys() {
1258
1258
let config = setup().await;
1259
1259
let _ = deploy_pipeline_without_connectors(
1260
1260
&config,
1261
-
r#"create table t1(id bigint not null, s varchar not null, primary key (id))"#,
1261
+
r#"create table t1(id bigint not null, s varchar not null, primary key (id)) with ('materialized' = 'true')"#,
0 commit comments