Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Apr 11, 2024
1 parent 8b3f112 commit 27b06c8
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions e2e_test/streaming/rate_limit/snapshot_amplification.slt
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,19 @@ INSERT INTO table select 1 from generate_series(1, 100000);
statement ok
flush;

statement ok
SET BACKGROUND_DDL=true;

statement ok
CREATE SINK sink AS
SELECT x.i1 as i1 FROM table x
JOIN table s1 ON x.i1 = s1.i1
JOIN table s2 ON x.i1 = s2.i1
WITH (connector = 'blackhole');

statement ok
SET BACKGROUND_DDL=false;

# Let sink amplify...
skipif in-memory
sleep 1s
Expand Down

0 comments on commit 27b06c8

Please sign in to comment.