mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 00:22:29 +00:00
fix test
This commit is contained in:
parent
6766dddbf4
commit
508efc8321
@ -1,6 +1,6 @@
|
|||||||
DROP TABLE IF EXISTS datetime;
|
DROP TABLE IF EXISTS datetime;
|
||||||
|
|
||||||
CREATE TABLE datetime (d DateTime) ENGINE = Memory;
|
CREATE TABLE datetime (d DateTime('UTC')) ENGINE = Memory;
|
||||||
INSERT INTO datetime(d) VALUES(toDateTime('2016-06-15 23:00:00'));
|
INSERT INTO datetime(d) VALUES(toDateTime('2016-06-15 23:00:00'));
|
||||||
|
|
||||||
SELECT quantile(0.2)(d) FROM datetime;
|
SELECT quantile(0.2)(d) FROM datetime;
|
||||||
|
Loading…
Reference in New Issue
Block a user