mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-03 13:02:00 +00:00
Added a test from #5131
This commit is contained in:
parent
f1f048ac87
commit
7a07f86e37
@ -0,0 +1 @@
|
||||
2019-04-26 00:00:00
|
@ -0,0 +1,5 @@
|
||||
DROP TABLE IF EXISTS test_datetime;
|
||||
CREATE TABLE test_datetime (time DateTime) ENGINE=MergeTree PARTITION BY time ORDER BY time;
|
||||
INSERT INTO test_datetime (time) VALUES (toDate(18012));
|
||||
SELECT * FROM test_datetime WHERE time=toDate(18012);
|
||||
DROP TABLE test_datetime;
|
Loading…
Reference in New Issue
Block a user