Update tests/queries/0_stateless/02902_diable_apply_deleted_mask.sql

Co-authored-by: SmitaRKulkarni <Smita.Kulkarni@clickhouse.com>
This commit is contained in:
Alexander Gololobov 2023-10-24 13:45:27 +02:00 committed by GitHub
parent 247722d44e
commit ab8fe68571
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -12,7 +12,7 @@ SELECT *, _row_exists FROM test_apply_deleted_mask;
SELECT 'With the setting disabled the deleted rows are visible';
SELECT *, _row_exists FROM test_apply_deleted_mask SETTINGS apply_deleted_mask = 0;
SELECT 'With the setting enabled the deleted rows are visible but still can be filterd out';
SELECT 'With the setting disabled the deleted rows are visible but still can be filterd out';
SELECT * FROM test_apply_deleted_mask WHERE _row_exists SETTINGS apply_deleted_mask = 0;
INSERT INTO test_apply_deleted_mask SELECT number, number::String FROM numbers(5, 1);