mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-21 15:12:02 +00:00
add DROP TABLE IF EXISTS in test
This commit is contained in:
parent
b604761a94
commit
35fce9c3ac
@ -1,3 +1,5 @@
|
||||
DROP TABLE IF EXISTS test.datetime;
|
||||
|
||||
CREATE TABLE test.datetime (d DateTime) ENGINE = Memory;
|
||||
INSERT INTO test.datetime(d) VALUES(toDateTime('2016-06-15 23:00:00'));
|
||||
|
||||
@ -24,3 +26,5 @@ SELECT quantilesTDigest(0.2)(d) FROM test.datetime;
|
||||
|
||||
SELECT quantileTDigestWeighted(0.2)(d, 1) FROM test.datetime;
|
||||
SELECT quantilesTDigestWeighted(0.2)(d, 1) FROM test.datetime;
|
||||
|
||||
DROP TABLE test.datetime;
|
||||
|
Loading…
Reference in New Issue
Block a user