ClickHouse/dbms/tests/queries/0_stateless/00746_compile_non_deterministic_function.sql
2018-10-24 14:31:23 +03:00

21 lines
643 B
SQL

SET compile_expressions = 1;
SET min_count_to_compile = 1;
DROP TABLE IF EXISTS test.time_table;
CREATE TABLE test.time_table(timecol DateTime, value Int32) ENGINE = MergeTree order by tuple();
INSERT INTO test.time_table VALUES (now() - 5, 5), (now() - 3, 3);
SELECT COUNT() from test.time_table WHERE value < now() - 1 AND value != 0 AND modulo(value, 2) != 0 AND timecol < now() - 1;
SELECT sleep(3);
INSERT INTO test.time_table VALUES (now(), 101);
SELECT sleep(3);
SELECT COUNT() from test.time_table WHERE value < now() - 1 AND value != 0 AND modulo(value, 2) != 0 AND timecol < now() - 1;
DROP TABLE IF EXISTS test.time_table;