mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 16:12:01 +00:00
fix test
This commit is contained in:
parent
508efc8321
commit
1a8871be36
@ -1,7 +1,7 @@
|
|||||||
DROP TABLE IF EXISTS datetime;
|
DROP TABLE IF EXISTS datetime;
|
||||||
|
|
||||||
CREATE TABLE datetime (d DateTime('UTC')) 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', 'UTC'));
|
||||||
|
|
||||||
SELECT quantile(0.2)(d) FROM datetime;
|
SELECT quantile(0.2)(d) FROM datetime;
|
||||||
SELECT quantiles(0.2)(d) FROM datetime;
|
SELECT quantiles(0.2)(d) FROM datetime;
|
||||||
|
Loading…
Reference in New Issue
Block a user