Skip to content

Commit

Permalink
chore(streaming): stabilize background_ddl basic test (#12880)
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Oct 16, 2023
1 parent db6c9d5 commit 30f2baf
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions e2e_test/background_ddl/basic.slt
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ statement ok
CREATE TABLE t (v1 int);

statement ok
INSERT INTO t select * from generate_series(1, 300000);
INSERT INTO t select * from generate_series(1, 200000);

statement ok
FLUSH;
Expand Down Expand Up @@ -41,17 +41,17 @@ sleep 30s
query I
select count(*) from m1;
----
300000
200000

query I
select count(*) from m2;
----
300000
200000

query I
select count(*) from m3;
----
300000
200000

statement ok
DROP MATERIALIZED VIEW m1;
Expand Down

0 comments on commit 30f2baf

Please sign in to comment.