Update 02346_inverted_index_mutation.sql

This commit is contained in:
Alexey Milovidov 2023-10-09 02:34:04 +03:00 committed by GitHub
parent 885e07cd0b
commit 1c473c03d9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -21,3 +21,5 @@ ALTER TABLE t UPDATE s='I am not inverted' WHERE 1 SETTINGS mutations_sync=1;
SELECT data_version FROM system.parts WHERE database=currentDatabase() AND table='t' AND active=1;
SELECT s FROM t WHERE s LIKE '%inverted%' SETTINGS force_data_skipping_indices='idx';
DROP TABLE t;