Compile ClickHouse summaries into the authoritative physical publication - #565
Merged
Merged
Conversation
zzylol
force-pushed
the
feat/unified-clickhouse-query-plan
branch
from
September 10, 2026 14:09
c372892 to
9ec1af9
Compare
zzylol
changed the base branch from
refactor/stable-post-asap-bindings
to
refactor/publish-authoritative-catalog
September 10, 2026 14:10
zzylol
force-pushed
the
feat/unified-clickhouse-query-plan
branch
2 times, most recently
from
September 10, 2026 14:13
9ec1af9 to
24db7a3
Compare
zzylol
changed the base branch from
refactor/publish-authoritative-catalog
to
refactor/typed-summary-definition-refs
September 10, 2026 14:16
zzylol
force-pushed
the
feat/unified-clickhouse-query-plan
branch
from
September 10, 2026 14:16
24db7a3 to
b4ec5f9
Compare
zzylol
changed the base branch from
refactor/typed-summary-definition-refs
to
refactor/unify-query-language
September 10, 2026 14:29
zzylol
force-pushed
the
feat/unified-clickhouse-query-plan
branch
3 times, most recently
from
September 10, 2026 14:35
b0f8f4d to
b70791f
Compare
zzylol
force-pushed
the
feat/unified-clickhouse-query-plan
branch
3 times, most recently
from
September 10, 2026 14:51
453c7cc to
35bf3ed
Compare
zzylol
force-pushed
the
refactor/unify-query-language
branch
2 times, most recently
from
September 10, 2026 16:09
482321b to
36e69c1
Compare
zzylol
force-pushed
the
feat/unified-clickhouse-query-plan
branch
from
September 10, 2026 16:17
35bf3ed to
cb8a0f4
Compare
zzylol
force-pushed
the
refactor/unify-query-language
branch
from
September 10, 2026 16:31
36e69c1 to
ae61b84
Compare
zzylol
force-pushed
the
feat/unified-clickhouse-query-plan
branch
from
September 10, 2026 17:09
cb8a0f4 to
353f497
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
ClickHouse aggregates over a bounded table range now bind Planner-selected summary leaves through the authoritative
SummaryCatalogand publish one compiler-ownedPhysicalPlanPublication. Table identity and value projection use the shared typedDataSourceIdentity::TableandValueProjectionIdentity::Columncontracts; SQL identity and exact fallback stay on the sharedQueryPlanentry.This removes the need for a ClickHouse bundle, sidecar catalog, or parallel executable-plan type.
Validation:
CARGO_INCREMENTAL=0 cargo check -p control_plane --lib -j 1CARGO_INCREMENTAL=0 cargo check -p data_plane --lib -j 1