Update 02575_merge_prewhere_materialized.sql

This commit is contained in:
Alexey Milovidov 2023-02-26 02:58:32 +03:00 committed by GitHub
parent 86e9b131c7
commit 2472eeaefd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -36,3 +36,8 @@ SELECT * FROM m PREWHERE a = 'OK' ORDER BY a, f;
SELECT * FROM m PREWHERE f = 1 ORDER BY a, f;
SELECT * FROM m WHERE f = 0 SETTINGS optimize_move_to_prewhere=0;
SELECT * FROM m WHERE f = 0 SETTINGS optimize_move_to_prewhere=1;
-- { echoOff }
DROP TABLE m;
DROP TABLE t1;
DROP TABLE t2;