mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
Updated test with Date and numbers comparsion.
This commit is contained in:
parent
05ac77dbde
commit
3fabaa28eb
@ -1,3 +1,4 @@
|
||||
1
|
||||
0
|
||||
1
|
||||
0
|
||||
|
@ -1,5 +1,8 @@
|
||||
SET send_logs_level = 'none';
|
||||
|
||||
select today() < 2018-11-14; -- { serverError 43 }
|
||||
select toDate('2018-01-01') < '2018-11-14';
|
||||
|
||||
select toDate('2018-01-01') < '2018-01-01';
|
||||
select toDate('2018-01-01') == '2018-01-01';
|
||||
select toDate('2018-01-01') != '2018-01-01';
|
||||
@ -11,3 +14,4 @@ select toDate('2018-01-01') < 1; -- { serverError 43 }
|
||||
select toDate('2018-01-01') == 1; -- { serverError 43 }
|
||||
select toDate('2018-01-01') != 1; -- { serverError 43 }
|
||||
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user