mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
add test for #2663
This commit is contained in:
parent
f6000b304c
commit
9bf6f8a62c
@ -0,0 +1,2 @@
|
||||
1
|
||||
0
|
8
dbms/tests/queries/0_stateless/00633_func_or_in.sql
Normal file
8
dbms/tests/queries/0_stateless/00633_func_or_in.sql
Normal file
@ -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;
|
Loading…
Reference in New Issue
Block a user