diff --git a/tests/sqllogictests/suites/ee/01_ee_system/01_0003_stream.test b/tests/sqllogictests/suites/ee/01_ee_system/01_0003_stream.test index dcb8b8f536951..d121f34b665af 100644 --- a/tests/sqllogictests/suites/ee/01_ee_system/01_0003_stream.test +++ b/tests/sqllogictests/suites/ee/01_ee_system/01_0003_stream.test @@ -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