mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
Add a test for #10102
This commit is contained in:
parent
6d6ea4249c
commit
f1f048ac87
@ -0,0 +1,2 @@
|
||||
2020-04-07
|
||||
2020-04-07
|
@ -0,0 +1,6 @@
|
||||
DROP TABLE IF EXISTS index;
|
||||
CREATE TABLE index (d Date) ENGINE = MergeTree ORDER BY d;
|
||||
INSERT INTO index VALUES ('2020-04-07');
|
||||
SELECT * FROM index WHERE d > toDateTime('2020-04-06 23:59:59');
|
||||
SELECT * FROM index WHERE identity(d > toDateTime('2020-04-06 23:59:59'));
|
||||
DROP TABLE index;
|
Loading…
Reference in New Issue
Block a user