Skip to content

Commit

Permalink
add e2e
Browse files Browse the repository at this point in the history
  • Loading branch information
st1page committed Mar 14, 2023
1 parent f718ef8 commit 63c2803
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions e2e_test/streaming/bug_fixes/issue_8084.slt
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
# https://github.com/risingwavelabs/risingwave/issues/8084

statement ok
SET RW_IMPLICIT_FLUSH TO true;

statement ok
create table t (a int primary key);

statement ok
create materialized view mv as select t1.* from t as t1 full join t as t2 on t1.a = t2.a;

statement ok
insert into t values(null);

# TODO: https://github.com/risingwavelabs/risingwave/issues/8084
query I
select * from mv;
----

statement ok
drop materialized view mv;

statement ok
drop table t;

0 comments on commit 63c2803

Please sign in to comment.