Skip to content

Support PREWHERE and trivial count for Memory tables - #116248

Open
alexey-milovidov wants to merge 25 commits into
masterfrom
memory-prewhere
Open

alexey-milovidov wants to merge 25 commits into
masterfrom
memory-prewhere

Conversation

@alexey-milovidov

@alexey-milovidov alexey-milovidov commented Aug 25, 2026

Copy link
Copy Markdown
Member

Related: ClickHouse/ClickBench#1590

Changelog category (leave one):

  • Performance Improvement

Changelog entry (a user-readable short description of the changes that goes into CHANGELOG.md):

Support PREWHERE (including the automatic move of WHERE conditions by optimize_move_to_prewhere) for Memory tables: only the columns of the conditions are read at first, and the remaining columns are read only for the blocks where some rows pass, and only for the passing rows. This is especially beneficial for tables with SETTINGS compress = true, because for a selective condition most columns are never decompressed. Additionally, SELECT count() FROM table on a Memory table is now served from metadata, and system.columns shows real per-column sizes for Memory tables.

The motivation is benchmarking a compressed in-memory table on ClickBench (ClickHouse/ClickBench#1590), where the last seven queries (CounterID = 62) lose the primary index of MergeTree and previously had to decompress every referenced column of every block.

Implementation:

  • StorageMemory::supportsPrewhere is now true. MemorySource applies the pushed-down row-level security filter and PREWHERE inside the reading source: it materializes only the filter-input columns, executes the filter steps, skips a block entirely when no row passes, and reads the remaining columns only for the surviving rows (IColumn::filter with the combined mask). The block layout is kept in exact correspondence with the output header, which SourceStepWithFilter::applyPrewhereActions builds by running the same actions on the sample block.
  • StorageMemory::getColumnSizes reports real per-column in-memory sizes (compressed sizes when compress = true). This is what enables the plan-level WHERE -> PREWHERE optimization (it declines on storages with no column sizes) and lets MergeTreeWhereOptimizer order conditions by the actual cost of reading their columns.
  • StorageMemory::supportsTrivialCountOptimization is now true, guarded against tables that are filled during query execution (materialized CTEs, GLOBAL subquery temporary tables) and against pinned snapshots (atomic CREATE MATERIALIZED VIEW ... POPULATE), where totalRows must not be observed at planning time.
  • MemorySource reports the read progress explicitly: the automatic accounting of ISource uses the returned chunk, which holds only the rows that passed the filter, and nothing at all for a block the filter eliminated completely. read_rows, SelectedRows, max_rows_to_read and the read quotas see the number of scanned rows, the same as before and the same as what ReadFromMergeTree reports for its PREWHERE.

Two bugs of other code that this change makes reachable are fixed here as well:

  • InterpreterSelectQuery read the MergeTree parts for the condition selectivity estimator with an assert_cast of storage_snapshot->data, which is a plain static_cast in a release build. MergeTreeData::SnapshotData and StorageMemory::SnapshotData are the only two types of storage snapshot data and they alias: the row count of the latter sits at the offset of the parts pointer of the former. It was unreachable, because StorageMemory was the only storage with its own snapshot data and it did not allow moving conditions to PREWHERE. Making Memory support PREWHERE turned it into a segmentation fault on the WHERE -> PREWHERE move with enable_analyzer = 0.
  • StorageMerge::supportsTrivialCountOptimization only asked the source tables the same question, while the row policy of a source table is applied later, when createChildrenPlans builds the child read plan, and is not reflected in the source table's totalRows. SELECT count() from the Merge table therefore counted the rows the policy hides. This is reproducible on master with a File source table; for a source table of the MergeTree family it is masked by apply_patch_parts, which is enabled by default and makes MergeTreeData::supportsTrivialCountOptimization decline for the snapshot-less check StorageMerge performs.

Benchmark (ClickBench queries, 10M-row hits subset in a Memory table with compress = true, 96-core aarch64, hot runs, new binary with the optimizations toggled off/on via optimize_move_to_prewhere / optimize_trivial_count_query):

Query off on speedup
Q0 SELECT COUNT(*) 0.003 0.001 3.0x
Q23 SELECT * ... URL LIKE '%google%' ORDER BY ... LIMIT 10 0.100 0.078 1.3x
Q36 WHERE CounterID = 62 AND EventDate ... 0.032 0.022 1.5x
Q38 0.025 0.010 2.5x
Q40 0.019 0.009 2.1x
Q41 0.018 0.008 2.3x
Q42 0.015 0.008 1.9x
SELECT * point lookup by WatchID 0.094 0.044 2.1x

The remaining queries are unchanged within noise. The effect grows with table size and filter selectivity: on the full 100M-row dataset the eliminated blocks dominate.


Workflow [PR]
Sync PR [sync-upstream/pr/116248]

alexey-milovidov and others added 4 commits August 25, 2026 05:07
PREWHERE (and the pushed-down row-level security filter) is applied inside
MemorySource: only the columns of the conditions are read at first, and the
remaining columns are read only for the blocks where some rows pass and only
for the passing rows. For a table with SETTINGS compress = true a selective
condition skips decompression of all other columns for the blocks it
eliminates.

StorageMemory::getColumnSizes reports real per-column in-memory sizes
(compressed sizes when compress = true), which both enables the automatic
WHERE -> PREWHERE move in the query plan optimization and lets it order
conditions by the actual cost of reading their columns.

SELECT count() FROM table is served from metadata (totalRows is exact,
maintained under the write mutex).

Motivated by benchmarking a compressed Memory table:
ClickHouse/ClickBench#1590

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…s and docs

A materialized CTE and a GLOBAL subquery temporary table are filled during
query execution, after the planner would have observed totalRows (as zero),
so the trivial count optimization must not apply to them.

Also update the in-code Memory engine documentation and add functional and
performance tests.

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…ents

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
@clickhouse-gh

clickhouse-gh Bot commented Aug 25, 2026

Copy link
Copy Markdown
Contributor

Workflow [PR], commit [cb57f81]

Summary:

job_name test_name status info comment
Upgrade check (amd_release) FAIL
Error message in clickhouse-server.log (see upgrade_error_messages.txt) FAIL cidb
Build profile diff ERROR

AI Review

Summary

This PR adds PREWHERE, trivial count(), and per-column size reporting for Memory tables, and it closes several issues found earlier in the review. The remaining problems are both correctness bugs in the new fast paths: BlocksWithCounts::bytes stops matching the metric enforced by the size cap after ALTER ... UPDATE/DELETE and backup restore, and GLOBAL IN predicates executed inside MemorySource still rely on the delayed set-building branch that the PR was otherwise hardening away.

Findings

❌ Blockers

  • [src/Storages/StorageMemory.cpp:411] BlocksWithCounts::bytes is defined everywhere else by Block::allocatedBytes() (MemorySink::onFinish, size-cap eviction in onFinish, and settings ALTER trimming), but the new recount after mutation and restore uses Block::bytes() here and again in restoreDataImpl() at src/Storages/StorageMemory.cpp:696. On variable-width columns those diverge, so after ALTER ... UPDATE/DELETE or backup restore the table can under-report totalBytes() and stop evicting too early under max_bytes_to_keep. Recompute the committed counter with the same metric on every write path (allocatedBytes() in both places) and add a regression that mutates/restores a String table while checking total_bytes and size-capped eviction.
  • [src/Processors/QueryPlan/ReadFromMemoryStorageStep.cpp:430] The in-source filter now hardens plain IN (subquery) by building its sets during applyFilters, but it still skips explicit PREWHERE ... GLOBAL IN (subquery) and row policies using GLOBAL IN via buildSetsForDAGExcludingGlobalIn(). Those predicates still execute inside MemorySource::generateFiltered(), so they are left on the delayed CreatingSets branch and retain the early-close race the PR is trying to remove. ReadFromMergeTree::applyFilters() builds explicit row_level_filter / prewhere_info sets in place and only keeps optimizer-moved GLOBAL IN on the delayed path; Memory needs the same split or an equivalent proof that the delayed branch cannot be short-circuited here. A focused regression for explicit PREWHERE ... GLOBAL IN plus a row policy with GLOBAL IN is needed.
Final Verdict
  • Status: ❌ Block
  • Minimum required actions: make the bytes counter use one metric on every Memory write path, and either build explicit/row-policy GLOBAL IN sets in place for Memory reads or demonstrate why the remaining delayed path is safe and cover it with a regression.

LLVM Coverage Report

Measured on commit cb57f81.

Metric Baseline Current Δ
Lines 88.40% 88.40% +0.00%
Functions 91.80% 91.80% +0.00%
Branches 80.60% 80.70% +0.10%

Changed lines: Changed C/C++ lines covered: 313/334 (93.71%) · Uncovered code

Full report · Diff report

@clickhouse-gh clickhouse-gh Bot added the pr-performance Pull request with some performance improvements label Aug 25, 2026
@clickhouse-gh

clickhouse-gh Bot commented Aug 25, 2026

Copy link
Copy Markdown
Contributor

📊 Cloud Performance Report

⚠️ AI verdict: not_sure1 query(s) regressed out of 39 analysed

Release-transition baseline: compared against the most recent available 26.9 masters at or before the trusted base-commit anchor because no 26.10 master baseline exists there.

This PR adds in-source PREWHERE and trivial-count support for Memory tables; the query-execution changes only take effect when a WHERE condition can be moved to PREWHERE or when a bare count() runs. All six flagged ClickBench queries are GROUP BY aggregations, most without a selective filter, so they largely do not exercise the changed path, and several deltas (Q16, Q18, Q33, Q34) sit inside or right on the edge of master's current variance band with noisy history. The one result worth attention is Q32 (GROUP BY URL), a clear and consistent +29.3% that the deterministic gates locked via the large-delta override — it should be re-checked, though the changed code is read/filter-side and not obviously on this query's path. Q16 is downgraded as unrelated noise; the rest are kept as reported.

clickbench

🔴 1 regressed · ⚠️ 5 inconclusive

Flagged queries (6 of 43)
Query Verdict Baseline median (ms) PR median (ms) Change q-value Hint
🔴 32 regression 721 932 +29.3% <0.0001 aggregation: Q32 (GROUP BY URL) shows a clear, consistent +29.3% and the deterministic gates locked it via the hard override; treat as a real regression to investigate even though the changed paths are read-side.
⚠️ 16 not_sure 532 614 +15.4% <0.0001 cpu: This is a GROUP BY aggregation with no WHERE filter, so the new Memory PREWHERE/trivial-count paths don't touch it; the +15.4% is within the current variance band and this query is intrinsically noisy.
⚠️ 18 not_sure 878 1045 +19.0% <0.0001 aggregation: Q18 is an unfiltered GROUP BY with high run-to-run noise; the +19.0% sits inside the current variance band and is not clearly attributable to the Memory reader changes.
⚠️ 28 not_sure 1050 1124 +7.0% <0.0001 aggregation: The two tests disagree on Q28 and the +7.0% delta is small on a noisy GROUP BY; no clear link to the changed Memory code path.
⚠️ 33 not_sure 1144 1219 +6.6% <0.0001 aggregation: Q33 (GROUP BY on ClientIP arithmetic) shifts +6.6%, just outside the current variance band; small and consistent but not obviously tied to the Memory reader changes.
⚠️ 34 not_sure 1139 1204 +5.7% <0.0001 aggregation: Q34 is a noisy GROUP BY moving +5.7%, on the edge of the current variance band; borderline and hard to attribute to this PR's changed paths.

Change = percent below ×2; the ratio of medians (×N faster/slower) beyond, where percent understates the scale. q-value = BH-FDR adjusted p; smaller is stronger evidence. MIRAI flags a query when q < fdr_q (default 0.10) — the value the verdict is based on.

tpch_adapted_1_official

🟢 No significant changes

Debug info
  • StressHouse run: 2d8910af-d70e-451c-9a8a-ed9aa7f20887
  • MIRAI run: 2c507b3a-b843-47ca-b360-6b7d923efc7b
  • PR check IDs:
    • clickbench_931136_1789853572
    • clickbench_931142_1789853572
    • clickbench_931148_1789853572
    • tpch_adapted_1_official_931469_1789853613
    • tpch_adapted_1_official_931571_1789853623
    • tpch_adapted_1_official_931600_1789853625

alexey-milovidov and others added 4 commits August 27, 2026 11:53
Virtual columns (e.g. `_table`) are materialized outside the reading
source, so the in-source filter cannot read them: `SELECT * FROM t
PREWHERE _table = 't'` failed with `NOT_FOUND_COLUMN_IN_BLOCK`.
Declare `supportedPrewhereColumns`, so both the analyzer and the
plan-level WHERE -> PREWHERE optimization reject such conditions with
`ILLEGAL_PREWHERE`, as asserted by `03094_virtual_column_table_name`.

https://s3.amazonaws.com/clickhouse-test-reports/json.html?PR=116248&sha=ebb9ae35257ee1588af487bfadfbb6002ac9c7d6&name_0=PR&name_1=Fast%20test

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
…ake)

Generated by running the tests; the values match manual computation and
the outputs observed in the CI report
https://s3.amazonaws.com/clickhouse-test-reports/json.html?PR=116248&sha=ebb9ae35257ee1588af487bfadfbb6002ac9c7d6&name_0=PR&name_1=Fast%20test

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
- `03610_disjunctions_pushdown_optimization` already pins
  `optimize_move_to_prewhere` and `query_plan_optimize_prewhere` to 1,
  so the pushed-down disjunctions over `Memory` tables now become
  PREWHERE; update the expected plan accordingly.
- `03777_join_precalculate_keys` and
  `03707_analyzer_convert_outer_any_to_inner` assert on join plans, so
  pin `optimize_move_to_prewhere = 0` to keep the asserted plans
  independent of the (harness-randomized) PREWHERE move.
- `03562_short_circuit_for_and_or` asserts on `read_rows` of count
  subqueries to prove short circuit; pin
  `optimize_trivial_count_query = 0`, because serving the count of a
  `Memory` table from metadata would defeat that signal.

https://s3.amazonaws.com/clickhouse-test-reports/json.html?PR=116248&sha=ebb9ae35257ee1588af487bfadfbb6002ac9c7d6&name_0=PR&name_1=Fast%20test

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
Comment thread src/Storages/StorageMemory.cpp
Comment thread src/Storages/StorageMemory.cpp Outdated
@clickhouse-gh

clickhouse-gh Bot commented Aug 27, 2026

Copy link
Copy Markdown
Contributor

Build profile diff (arm_release)

Comparing commit cb57f81e5c92eedeab3c2e3ff9a5a9214c0f3cd2 with master failed: RuntimeError: CI logs cluster query failed: SELECT file, countIf(side = 'pr') AS pr_cou….

See the job log for details.

…ocks

`SELECT count()` on a `Memory` table is served from the row counter, while ordinary
reads use the set of blocks captured in `getStorageSnapshot`. The counters were
separate atomics updated around `data.set`, so a concurrent reader could observe a
row count that corresponded to no state the table ever had.

Move the row and byte counters into the `MultiVersion` object that holds the blocks,
as the pre-existing `TODO` in `getStorageSnapshot` suggested. They are now published
atomically together with the blocks they describe, `totalRows` is the exact row count
of a committed state, and `SnapshotData::rows` is exact rather than approximate.

Also restrict `supportedPrewhereColumns` to the stored columns without a `DEFAULT`
expression (the same restriction as `StorageFile`): such a column is absent from the
blocks written before `ALTER TABLE ... ADD COLUMN`, and the in-source filter reads it
as the default value of its type instead of evaluating the expression. `ALIAS` and
`EPHEMERAL` columns are excluded as well, because they are never stored.

Add `05052_memory_prewhere_added_column` and `05053_memory_trivial_count_concurrent`.
Comment thread src/Processors/QueryPlan/ReadFromMemoryStorageStep.cpp
…er test

`ReadFromMemoryStorageStep` evaluates the row-level security filter and
`PREWHERE` inside `MemorySource`, so a condition such as
`PREWHERE k IN (SELECT ...)` carries a `FutureSet` that has to be ready by
the time the source runs. The pipeline-level `CreatingSetsStep` normally
fills it in, but `DelayedPortsProcessor` can be short-circuited by a
downstream processor that closes its inputs early, which is why
`ReadFromMergeTree` builds those sets in place for its storage-level
`PREWHERE`. Do the same in `makeSourceFilter`, excluding the sets of
`GLOBAL IN`, to which `ReadFromRemote` still has to attach an external
table. Added `05057_memory_prewhere_in_subquery` covering explicit and
optimizer-moved `PREWHERE ... IN (SELECT ...)` and a row policy with `IN`.

`05052_memory_prewhere_added_column` failed with the old analyzer: it
substitutes an `ALIAS` column expression into `PREWHERE` before the storage
sees it, so `PREWHERE a = 4` is not rejected there. Pin `enable_analyzer`
for that assertion. Renumbered the two tests that collided with master.

https://s3.amazonaws.com/clickhouse-test-reports/json.html?PR=116248&sha=de59dc98eb76385347efe69e31ca5bf9b02bdf47&name_0=PR&name_1=Stateless%20tests%20%28amd_llvm_coverage%2C%20old%20analyzer%2C%20s3%20storage%2C%20DBReplicated%2C%20parallel%2C%202%2F3%29
#116248
Comment thread src/Processors/QueryPlan/ReadFromMemoryStorageStep.cpp
Comment thread src/Storages/StorageMemory.cpp
@clickhouse-gh clickhouse-gh Bot added the comp-simple-engines Lightweight single-node table engines: Log/StripeLog (append-only logs), Buffer (async batching),... label Sep 4, 2026
alexey-milovidov and others added 7 commits September 7, 2026 17:45
…a source table has a row policy

`StorageMerge::supportsTrivialCountOptimization` only asked the source tables
the same question, and `StorageMerge::totalRows` sums their `totalRows`. The
row policy of a source table is applied later, while `createChildrenPlans`
builds the child read plan (`RowPolicyData`), and it is not reflected in the
source table's `totalRows`, so `SELECT count()` from the `Merge` table returned
the count including the rows the policy hides.

This is reproducible on `master` with a source table of a storage that
advertises the trivial count unconditionally, e.g. `File`:

```
CREATE TABLE file_child (x UInt64) ENGINE = File(TSV);
INSERT INTO file_child SELECT number FROM numbers(10);
CREATE TABLE merge_over_file (x UInt64) ENGINE = Merge(currentDatabase(), '^file_child$');
CREATE ROW POLICY pol ON file_child USING x < 3 TO ALL;
SELECT count() FROM file_child;      -- 3
SELECT count() FROM merge_over_file; -- 10, must be 3
```

For a source table of the `MergeTree` family the gap is masked by
`apply_patch_parts`, which is enabled by default and makes
`MergeTreeData::supportsTrivialCountOptimization` decline for the snapshot-less
check `StorageMerge` performs. Making `Memory` support the trivial count opens
the gap for `Memory` source tables as well, so close it in `StorageMerge`:
decline when any source table has a row policy that is not always true. The row
policy of the `Merge` table itself is already checked by the caller.
…in the source

`ISource` derives the read progress from the returned chunk, which for the
in-source filter holds only the rows that passed, and nothing at all for a
block the filter eliminates completely. That under-reported `read_rows` and
`SelectedRows` and weakened `max_rows_to_read` and read quotas for a selective
scan of a `Memory` table.

Report the progress explicitly in `MemorySource::generateFiltered` for every
scanned block, including the blocks where no row passes: the number of rows
scanned, and the size of the columns actually materialized from the block. This
suppresses the automatic accounting of `ISource` (it only kicks in when the
generator reported nothing), so the rows are not counted twice, and it makes
the number of rows the same as before the in-source filter existed - and the
same as what `ReadFromMergeTree` reports for its `PREWHERE`.
…nalyzer

`InterpreterSelectQuery` read the `MergeTree` parts for the condition
selectivity estimator with an `assert_cast` of `storage_snapshot->data`, which
in a release build is a plain `static_cast`. `MergeTreeData::SnapshotData` and
`StorageMemory::SnapshotData` are the only two types of storage snapshot data,
and they alias: the `size_t rows` of the latter sits at the offset of the
`RangesInDataPartsPtr parts` of the former. Until now this was unreachable,
because `StorageMemory` was the only storage with its own snapshot data and it
did not allow moving conditions to `PREWHERE`; every other storage that does
leaves `storage_snapshot->data` empty.

Making `Memory` support `PREWHERE` opened this path, and a table with one row
made the cast produce `parts = 0x1`, which passed the null check and was
dereferenced:

    Address: 0x1. Access: <not available>. Address not mapped to object.
    ...
    src/Interpreters/InterpreterSelectQuery.cpp:908: DB::InterpreterSelectQuery::InterpreterSelectQuery(...)::$_0::operator()(bool) const

It fired on the existing test `04927_date_preimage_result_correctness`, whose
`Memory` table is queried with a `WHERE` and `enable_analyzer = 0`. The new
tests of this pull request all used an explicit `PREWHERE` with the old
analyzer, and the crash needs a `WHERE` and no `PREWHERE`.

Check the type of the snapshot data instead, the same way
`ReadFromMergeTree::createProjectionQueryPlan` does. The parts are only used by
the `MergeTree` condition selectivity estimator, so leaving them empty for
other storages is the correct behaviour, not a fallback.

Report: https://s3.amazonaws.com/clickhouse-test-reports/praktika.html?PR=116248&sha=961435020213aeb0283b85946de22b833445e67b&name_0=PR&name_1=Stateless%20tests%20%28arm_binary%2C%20parallel%29
… the read progress

`05136_merge_trivial_count_row_policy`: `SELECT count()` from a `Merge` table
whose source table has a row policy - for a `Memory` source table, and for a
`File` source table, where the wrong result is reproducible on `master`.

`05137_memory_prewhere_old_analyzer`: the WHERE -> PREWHERE move for a `Memory`
table with `enable_analyzer = 0`, which used to be a segmentation fault. The
new tests of this pull request used an explicit `PREWHERE` with the old
analyzer, and the crash needs a `WHERE` and no `PREWHERE`.

`05138_memory_prewhere_read_rows`: `read_rows` of a selective `PREWHERE` over a
`Memory` table is the number of scanned rows, both when one row passes and when
no row passes at all.

Also fold the row policy of the target of a matched `Alias` table into the
comment of `StorageMerge::supportsTrivialCountOptimization`: it needs no check
of its own, because `StorageAlias` declines the trivial count for the
snapshot-less check that `StorageMerge` performs.
# Conflicts:
#	tests/queries/0_stateless/03707_analyzer_convert_outer_any_to_inner.sql
`05138_memory_prewhere_read_rows` looked up the queries in `system.query_log`
with `query LIKE '%FROM t_memory_read_rows %'`, and the third query of the test
ends with `FROM t_memory_read_rows;`, so the trailing space excluded it and only
two of the three expected `read_rows` values were returned. Dropped the trailing
space from the pattern.

`04330_join_disjunctions_pushdown_using_type_mismatch` asserts on the plan of a
join over two `Memory` tables. Now that `Memory` supports `PREWHERE`, the filters
that the disjunction push-down places above the reads are moved into `PREWHERE`
and print as `Prewhere filter column:` instead of `Filter column:`, and both
`optimize_move_to_prewhere` and `query_plan_optimize_prewhere` are randomized by
the test harness, so the assertion was not deterministic either way. Pinned both
to 0 in the two `EXPLAIN` queries, which keeps the reference of the test as it is
on master.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
alexey-milovidov and others added 2 commits September 17, 2026 15:07
# Conflicts:
#	tests/queries/0_stateless/03707_analyzer_convert_outer_any_to_inner.sql
…lan optimization

`ReadFromMemoryStorageStep::makeSourceFilter` built the sets of the row-level filter
and `PREWHERE` from `initializePipeline`. That is too late: at the end of
`QueryPlan::optimize`, `DelayedCreatingSetsStep` takes the subquery plan out of every
`FutureSetFromSubquery`, so `buildSetInplace` had no source to execute and the sets were
still left to the pipeline-level `CreatingSetsStep`, which is exactly the short-circuit
race the in-place build is meant to close.

Override `applyFilters` and `updatePrewhereInfo` instead, the way `ReadFromMergeTree`
does: `applyFilters` builds the sets of the row-level filter and of an explicit
`PREWHERE`, `updatePrewhereInfo` builds the set of a condition that `optimizePrewhere`
moves into `PREWHERE` afterwards. Sets of `GLOBAL IN` stay excluded.

The test asserts on `EXPLAIN PIPELINE`: a set built in place needs neither the
`CreatingSet` branch nor the `DelayedPorts` gate, and a control query whose filter stays
above the source keeps both. It also runs the shape that motivated the hardening, a
downstream `JOIN` with an empty right side. Verified that the test fails on the binary
built before this change.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
The analyzer is mandatory since 26.9 and `enable_analyzer = 0` is rejected with
`SETTING_CONSTRAINT_VIOLATION`, so the old-analyzer section of `05043_memory_prewhere`,
the whole `05137_memory_prewhere_old_analyzer` test, and the `enable_analyzer = 1` pin in
`05055_memory_prewhere_added_column` are gone.

Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
@alexey-milovidov

Copy link
Copy Markdown
Member Author

🕵 @groeneai, investigate the failure: https://s3.amazonaws.com/clickhouse-test-reports/praktika.html?PR=116248&sha=3e7700201d2fd04f835203368b83308f1ac2e116&name_0=PR&name_1=Upgrade%20check%20(amd_release) and provide a fix in a separate PR. If the fix is already in progress, link it here.

The only red is Error message in clickhouse-server.log: after the upgrade, the mutation all_1_1_1_2 of t_stale_part_type_5 from 04653_mutation_rewrite_stale_part_column_type (RENAME COLUMN b TO d on a part with a stale column type, then MATERIALIZE COLUMN c, MATERIALIZE PROJECTION p_ad) fails repeatedly in MutatePlainMergeTreeTask with Unknown expression identifier \b`. Maybe you meant: ['a']. In scope b, b. (UNKNOWN_IDENTIFIER). This PR does not touch MergeTree` mutations, and the same failure shows up in the Upgrade check of many unrelated PRs from 2026-09-12 through 2026-09-17 (for example #113389, #112313, #120324, #120259, #118716, #120220).

@groeneai

Copy link
Copy Markdown
Collaborator

Not caused by your change, and the fix is already open: #118499 (2026-09-07, not yet reviewed).

The arm is the empty ALTER TABLE ... DETACH PART tombstone from section 5 of that test. A restart revives it as Active and mutation selection wins a race against cleanup: StorageMergeTree::startup calls clearEmptyParts() before outdated parts are loaded, and clearEmptyParts returns 0 while outdated_data_parts_loading_finished is false, so the part stays active and is selected for mutation version 2. Its columns.txt still lists b while the renaming mutation entry is gone, so every attempt fails until the cleanup those attempts delay drops the part, about 30 seconds later. The repeated identifier in In scope b, b. is the synthesized column_to_updated next to output_columns, not a second problem, and the final state is correct: only the log scan reds.

#118499 skips a zero-row part in selectPartsToMutate under the same droppability conditions clearEmptyParts itself applies, and asks cleanup for that removal directly instead of waiting for the shared cleanup period. One open question is recorded in its description: I put the guard in selection rather than ordering clearEmptyParts before mutation scheduling starts, to avoid serialising startup behind the asynchronous outdated-part load.

alexey-milovidov and others added 2 commits September 18, 2026 16:54
…hdown_use_nulls`

The test counts the plan lines matching `Filter column: CAST(%`. `Memory` tables support
`PREWHERE` in this branch, so `optimizePrewhere` moves the pushed-down cross-type predicates
into the reading step, and `SourceStepWithFilter::describeActions` prints them as
`Prewhere filter column:  <expression>` - with two spaces, because the pretty expression that
`formatFilterPretty` builds already starts with one. The single-space pattern of the test
stopped matching those lines, and the counts dropped from 2 and 1 to 1 and 0.

Pin `optimize_move_to_prewhere` and `query_plan_optimize_prewhere` off in the three `EXPLAIN`
queries, the same way the other plan-asserting tests are pinned in this branch. The queries
that assert on results are left alone, so they keep exercising the `PREWHERE` path of a
`Memory` table under `join_use_nulls`.

https://s3.amazonaws.com/clickhouse-test-reports/praktika.html?PR=116248&sha=fdf6f22ddcb4360e5e590a4521f1b00de73a85e3&name_0=PR&name_1=Fast%20test
#116248

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
…_privilege`

`where_const_view` selects from a `Memory` table with a `WHERE`, and the test asserts on the
legacy `EXPLAIN actions = 1` plan, where the condition appears as a `Filter` step directly above
`ReadFromMemoryStorage`. With `PREWHERE` support for `Memory` tables the condition moves into the
reading step and the whole block changes shape. The test is `no-fasttest` - the encryption
functions it needs are not in that build - so the `Fast test` did not catch it.

Pin `optimize_move_to_prewhere` off for that one query. The other queries of the test have no
`WHERE` at all, so their plans do not move.

Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
rows += buffer.rows();
bytes += buffer.bytes();
new_data->rows += buffer.rows();
new_data->bytes += buffer.bytes();

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

BlocksWithCounts::bytes is now part of the committed table state and it is also what the max_bytes_to_keep / min_bytes_to_keep eviction checks compare against. Recomputing it with Block::bytes() here breaks that invariant: inserts and evictions use Block::allocatedBytes(), and those diverge for variable-width columns (ColumnString::byteSize() counts only the used payload, while allocatedBytes() counts the reserved backing storage). After ALTER ... UPDATE/DELETE, totalBytes() can therefore under-report the real in-memory footprint, and the next insert can stop evicting too early because it adds inserted_bytes to an underestimated base. The restore path has the same mismatch at src/Storages/StorageMemory.cpp:696. I think this counter has to use the same metric on every write path, i.e. allocatedBytes() here and in restoreDataImpl().

/// Sets of `GLOBAL IN` are excluded: `ReadFromRemote` has to attach an external table to them
/// before they are built.
if (query_info.row_level_filter)
VirtualColumnUtils::buildSetsForDAGExcludingGlobalIn(query_info.row_level_filter->actions, context);

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This still leaves explicit PREWHERE ... GLOBAL IN (subquery) and pushed row policies using GLOBAL IN on the pipeline-built path, even though the predicate is executed inside MemorySource::generateFiltered(). The race described just above is therefore still reachable for those forms: if a downstream processor short-circuits DelayedPortsProcessor, the source will still see a not-ready set. ReadFromMergeTree::applyFilters() builds explicit PREWHERE / row-level sets with buildSetsForDAG() and relies on cannotBeMoved() plus updatePrewhereInfo() to keep only optimizer-moved GLOBAL IN off the synchronous path.

Can we mirror that split here: build all explicit query_info.row_level_filter / query_info.prewhere_info sets in applyFilters(), and keep buildSetsForDAGExcludingGlobalIn() only in updatePrewhereInfo() for the optimizer-moved case? A focused regression on PREWHERE ... GLOBAL IN and a row policy with GLOBAL IN would pin the remaining gap.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

comp-simple-engines Lightweight single-node table engines: Log/StripeLog (append-only logs), Buffer (async batching),... pr-performance Pull request with some performance improvements

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants