Update tests/queries/0_stateless/00910_buffer_prewhere_different_types.sql

Co-authored-by: Alexander Gololobov <davenger@clickhouse.com>
This commit is contained in:
Nikolai Kochetov 2024-04-24 18:06:55 +02:00 committed by GitHub
parent 01d8dda773
commit fc40098460
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -9,3 +9,7 @@ SET send_logs_level='error';
CREATE TABLE buffer_table1__fuzz_28 (`x` Nullable(UInt32)) ENGINE = Buffer(currentDatabase(), 'merge_tree_table1', 16, 10, 60, 10, 1000, 1048576, 2097152);
SELECT * FROM buffer_table1__fuzz_28 PREWHERE x = toLowCardinality(1);
CREATE ROW POLICY rp ON buffer_table1__fuzz_28 FOR SELECT USING x = toLowCardinality(1) TO default;
SELECT * FROM buffer_table1__fuzz_28;