Skip to content

Commit

Permalink
add test
Browse files Browse the repository at this point in the history
  • Loading branch information
zhyass committed Dec 20, 2023
1 parent fea6965 commit be561b7
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions tests/sqllogictests/suites/ee/01_ee_system/01_0003_stream.test
Original file line number Diff line number Diff line change
Expand Up @@ -250,9 +250,43 @@ query T
select * from s_14062 where change$row_id = '1';
----

statement ok
drop stream s_14062

statement ok
drop table t_14062 all

######################
# end of issue 14062 #
######################

###############
# issue 14099 #
###############

statement ok
create table t_14099 (a int, b int);

statement ok
create stream s_14099 on table t_14099 ;

statement ok
insert into t_14099 values(1, 1), (2, 2);

query T
select * from s_14099 where a>1 limit 1;
----
2 2

statement ok
drop table t_14099 all

statement ok
drop stream s_14099

######################
# end of issue 14099 #
######################

statement ok
DROP DATABASE IF EXISTS test_stream

0 comments on commit be561b7

Please sign in to comment.