mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-19 14:11:58 +00:00
6 lines
319 B
SQL
6 lines
319 B
SQL
DROP TABLE IF EXISTS tdm__fuzz_23;
|
|
CREATE TABLE tdm__fuzz_23 (`x` UInt256) ENGINE = MergeTree ORDER BY x SETTINGS write_final_mark = 0;
|
|
INSERT INTO tdm__fuzz_23 FORMAT Values (1);
|
|
SELECT count(x) FROM tdm__fuzz_23 WHERE toDate(x) < toDate(now(), 'Asia/Istanbul') SETTINGS max_rows_to_read = 1;
|
|
DROP TABLE tdm__fuzz_23;
|