File tree Expand file tree Collapse file tree 2 files changed +4
-2
lines changed
Expand file tree Collapse file tree 2 files changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -110,11 +110,13 @@ test_snapshot_and_upstream_read() {
110110 # Provide snapshot
111111 run_sql_file " $PARENT_PATH " /sql/backfill/basic/insert.sql
112112
113+ run_sql " alter table t1 set dml_rate_limit = 10"
114+
113115 # Provide updates ...
114116 run_sql_file " $PARENT_PATH " /sql/backfill/basic/insert.sql &
115117
116118 # ... and concurrently create mv.
117- run_sql_file " $PARENT_PATH " /sql/backfill/basic/create_mv.sql &
119+ run_sql_file " $PARENT_PATH " /sql/backfill/basic/create_mv.sql && run_sql " alter table t1 set dml_rate_limit = default " &
118120
119121 wait
120122
Original file line number Diff line number Diff line change @@ -2,5 +2,5 @@ insert into t1
22SELECT
33 generate_series,
44 ' {"orders": {"id": 1, "price": "2.30", "customer_id": 2}}' ::jsonb
5- FROM generate_series(1 , 50000 );
5+ FROM generate_series(1 , 10000 );
66FLUSH;
You can’t perform that action at this time.
0 commit comments