Skip to content

Commit

Permalink
update slt
Browse files Browse the repository at this point in the history
  • Loading branch information
kwannoel committed Aug 7, 2024
1 parent c50ee99 commit a2863bc
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions e2e_test/source/basic/alter/rate_limit_table_kafka.slt
Original file line number Diff line number Diff line change
Expand Up @@ -66,18 +66,28 @@ skipif in-memory
query I
alter table kafka_source set source_rate_limit to 1000;

skipif in-memory
sleep 3s

skipif in-memory
query I
alter table kafka_source set source_rate_limit to default;
select count(*) > 1 from kafka_source;
----
t

############## New MV created should have rate limit = 1000.

statement ok
create materialized view mv as select * from kafka_source;

skipif in-memory
sleep 3s

skipif in-memory
query I
select count(*) > 1 from kafka_source;
select count(*) > 1 from mv;
----
t
1000

############## Cleanup

Expand Down

0 comments on commit a2863bc

Please sign in to comment.