Skip to content

Commit

Permalink
try fix ci again
Browse files Browse the repository at this point in the history
Signed-off-by: Richard Chien <[email protected]>
  • Loading branch information
stdrc committed Jun 24, 2024
1 parent 092c695 commit 8b77020
Showing 1 changed file with 9 additions and 2 deletions.
11 changes: 9 additions & 2 deletions e2e_test/streaming/now.slt
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@
skipif madsim
# In parallel test, we cannot get the DB name.
skipif parallel
# TODO: Later if we introduce a new `now()`-like function that returns the time of statement execution,
# we'll be able to directly create MV without `./risedev psql` and so that we can remove these `skipif`.
system ok
./risedev psql -c "
create materialized view mv as
Expand All @@ -20,18 +22,23 @@ flush;
skipif madsim
skipif parallel
query I
select count(*) > 10 from mv;
select count(*) >= 10 from mv;
----
t

skipif madsim
skipif parallel
sleep 2s

skipif madsim
skipif parallel
statement ok
flush;

skipif madsim
skipif parallel
query I
select count(*) > 12 from mv;
select count(*) >= 12 from mv;
----
t

Expand Down

0 comments on commit 8b77020

Please sign in to comment.