Skip to content

Commit

Permalink
chore(test): add more null range scan test (#13566)
Browse files Browse the repository at this point in the history
  • Loading branch information
chenzl25 authored Nov 22, 2023
1 parent 8deba24 commit 273de7b
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions e2e_test/batch/basic/null_range_scan.slt.part
Original file line number Diff line number Diff line change
Expand Up @@ -28,3 +28,20 @@ drop materialized view mv;

statement ok
drop table t0;

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

statement ok
create materialized view rev_t as select * from t order by v desc;

statement ok
insert into t values (10), (20), (NULL);

query I rowsort
select * from rev_t where v > 15;
----
20

statement ok
drop table t cascade;

0 comments on commit 273de7b

Please sign in to comment.