Added test for the issue found by StarWix [#CLICKHOUSE-3].

This commit is contained in:
Alexey Milovidov 2017-12-22 01:59:03 +03:00 committed by alexey-milovidov
parent fca5d5f2c7
commit 46c733ec11
2 changed files with 8 additions and 0 deletions

View File

@ -0,0 +1 @@
10000000

View File

@ -0,0 +1,7 @@
DROP TABLE IF EXISTS test.float;
CREATE TABLE test.float (x Float64) ENGINE = Log;
INSERT INTO test.float VALUES (1e7);
SELECT * FROM test.float;
DROP TABLE test.float;