mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 16:42:05 +00:00
Fix test
This commit is contained in:
parent
2fedbfdf65
commit
e26f66f51f
@ -15,7 +15,7 @@ SELECT count() FROM test.hits WHERE EventDate IN (toDate('2014-03-18'), toDate('
|
|||||||
SELECT count() FROM test.hits WHERE EventDate = concat('2014-0', '3-18');
|
SELECT count() FROM test.hits WHERE EventDate = concat('2014-0', '3-18');
|
||||||
|
|
||||||
DROP TABLE IF EXISTS test.hits_indexed_by_time;
|
DROP TABLE IF EXISTS test.hits_indexed_by_time;
|
||||||
CREATE TABLE test.hits_indexed_by_time (EventDate Date, EventTime DateTime) ENGINE = MergeTree(EventDate, EventTime, 8192);
|
CREATE TABLE test.hits_indexed_by_time (EventDate Date, EventTime DateTime('Europe/Moscow')) ENGINE = MergeTree(EventDate, EventTime, 8192);
|
||||||
INSERT INTO test.hits_indexed_by_time SELECT EventDate, EventTime FROM test.hits;
|
INSERT INTO test.hits_indexed_by_time SELECT EventDate, EventTime FROM test.hits;
|
||||||
|
|
||||||
SELECT count() FROM test.hits_indexed_by_time WHERE EventTime = '2014-03-18 01:02:03';
|
SELECT count() FROM test.hits_indexed_by_time WHERE EventTime = '2014-03-18 01:02:03';
|
||||||
|
Loading…
Reference in New Issue
Block a user