Skip to content

Commit

Permalink
add test for #2663
Browse files Browse the repository at this point in the history
  • Loading branch information
chenxing-xc authored and alexey-milovidov committed Jul 18, 2018
1 parent f6000b3 commit 9bf6f8a
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dbms/tests/queries/0_stateless/00633_func_or_in.reference
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
1
0
8 changes: 8 additions & 0 deletions dbms/tests/queries/0_stateless/00633_func_or_in.sql
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
drop table if exists orin_test;

create table orin_test (c1 Int32) engine=Memory;
insert into orin_test values(1), (100);

select minus(c1 = 1 or c1=2 or c1 =3, c1=5) from orin_test;

drop table orin_test;

0 comments on commit 9bf6f8a

Please sign in to comment.