ClickHouse/dbms/tests/queries/0_stateless/00535_parse_float_scientific.sql

8 lines
171 B
SQL

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;