ClickHouse/tests/queries/0_stateless/02902_diable_apply_deleted_mask.reference
Alexander Gololobov 40062ca210
Fix test
2023-10-24 15:30:32 +02:00

17 lines
327 B
Plaintext

Normal SELECT does not see deleted rows
1 1 1
3 3 1
With the setting disabled the deleted rows are visible
0 0 0
1 1 1
2 2 0
3 3 1
4 4 0
With the setting disabled the deleted rows are visible but still can be filterd out
1 1
3 3
Read the data after OPTIMIZE, all deleted rwos should be physically removed now
1 1 1
3 3 1
5 5 1