Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
cf943d4
feat(clickhouse): execute typed array element access
zzylol Sep 11, 2026
3256240
style(clickhouse): format collection default helper
zzylol Sep 11, 2026
f6c59bf
feat(clickhouse): read typed tuple fields inside query DAGs
zzylol Sep 11, 2026
2d293ef
Merge commit '32562405' into feat/clickhouse-tuple-values
zzylol Sep 11, 2026
c53e5e7
Merge remote-tracking branch 'origin/main' into feat/clickhouse-colle…
zzylol Sep 11, 2026
8c99d44
Merge commit 'c53e5e75' into feat/clickhouse-tuple-values
zzylol Sep 11, 2026
cce8a1e
refactor(clickhouse): share nested type argument parsing
zzylol Sep 11, 2026
10909fe
fix(clickhouse): distinguish nonfinite exact values from nulls
zzylol Sep 11, 2026
f826134
test(clickhouse): verify exact denormal transport policy
zzylol Sep 11, 2026
3190139
Merge commit 'f8261340' into feat/clickhouse-tuple-values
zzylol Sep 11, 2026
05b57db
test(clickhouse): verify native tuple field rendering
zzylol Sep 11, 2026
4bf3ca4
Merge remote-tracking branch 'origin/main' into feat/clickhouse-tuple…
zzylol Sep 11, 2026
31bdeb8
fix(clickhouse): preserve SQL nulls in result formats
zzylol Sep 11, 2026
8e0ddd6
fix(clickhouse): preserve SQL nulls in result formats
zzylol Sep 11, 2026
f6aa7fe
test(clickhouse): distinguish literal null marker strings
zzylol Sep 11, 2026
2754be8
test(clickhouse): distinguish literal null marker strings
zzylol Sep 11, 2026
8db7d40
Merge remote-tracking branch 'origin/main' into fix/clickhouse-null-r…
zzylol Sep 11, 2026
fe0ba21
test(clickhouse): execute planner-selected array SQL in a process
zzylol Sep 11, 2026
c16b3b2
Merge commit '8db7d40e' into test/clickhouse-collection-process
zzylol Sep 11, 2026
f711679
test(clickhouse): include nested tuple fields in SQL process replay
zzylol Sep 11, 2026
0e2722a
Merge remote-tracking branch 'origin/main' into test/clickhouse-colle…
zzylol Sep 11, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions control_plane/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -76,17 +76,17 @@ asap_types.workspace = true
# scaffolding, unaware that `data_plane`'s `summary_executor.rs` in *this*
# repo is a real one. Vendored locally instead of chased upstream -- see
# `data_plane/src/query_engines/asap_query_engine/summary_exec.rs`.
planner-types = { package = "asap-types", git = "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/ProjectASAP/ASAPPlanner", rev = "5e9396033a5a5d5f350bfa675d12770c972ee991" }
asap-aware-mapping = { git = "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/ProjectASAP/ASAPPlanner", rev = "5e9396033a5a5d5f350bfa675d12770c972ee991" }
planner-types = { package = "asap-types", git = "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/ProjectASAP/ASAPPlanner", rev = "23270ba33009953b6c1e293ba95c6a430ab8d222" }
asap-aware-mapping = { git = "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/ProjectASAP/ASAPPlanner", rev = "23270ba33009953b6c1e293ba95c6a430ab8d222" }

# L1 adoption (design-target-architecture.md Part B): the PromQL front
# end itself, replacing control_plane's own query_parser/promql.rs.
# Pinned via `rev`, not a floating branch reference. Same rev as
# `planner-types`/`asap-aware-mapping` above -- these three MUST move
# together (two revs of the same upstream repo's types in one workspace
# resolve to distinct Rust types that won't unify).
asap-frontend-promql = { git = "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/ProjectASAP/ASAPPlanner", rev = "5e9396033a5a5d5f350bfa675d12770c972ee991" }
asap-frontend-sql = { git = "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/ProjectASAP/ASAPPlanner", rev = "5e9396033a5a5d5f350bfa675d12770c972ee991" }
asap-frontend-promql = { git = "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/ProjectASAP/ASAPPlanner", rev = "23270ba33009953b6c1e293ba95c6a430ab8d222" }
asap-frontend-sql = { git = "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/ProjectASAP/ASAPPlanner", rev = "23270ba33009953b6c1e293ba95c6a430ab8d222" }

[dev-dependencies]
tokio = { version = "1", features = ["full", "test-util"] }
Expand Down
2 changes: 1 addition & 1 deletion crates/asap_types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ sha2 = "0.10"
# exactly (`control_plane/Cargo.toml`) -- two different revs of the same
# git dependency in one workspace resolve to two distinct Rust types that
# won't unify.
planner-types = { package = "asap-types", git = "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/ProjectASAP/ASAPPlanner", rev = "5e9396033a5a5d5f350bfa675d12770c972ee991" }
planner-types = { package = "asap-types", git = "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/ProjectASAP/ASAPPlanner", rev = "23270ba33009953b6c1e293ba95c6a430ab8d222" }
6 changes: 3 additions & 3 deletions data_plane/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ sha2 = "0.10"
# reduction: Reduction, .. }`) are `pre_asap` types, in the same crate now
# (not a separate `asap-ir` import). Query serving consumes the compiled
# QueryPlan; these types are used at physical-plan compilation boundaries.
planner-types = { package = "asap-types", git = "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/ProjectASAP/ASAPPlanner", rev = "5e9396033a5a5d5f350bfa675d12770c972ee991" }
asap-frontend-promql = { git = "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/ProjectASAP/ASAPPlanner", rev = "5e9396033a5a5d5f350bfa675d12770c972ee991" }
planner-types = { package = "asap-types", git = "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/ProjectASAP/ASAPPlanner", rev = "23270ba33009953b6c1e293ba95c6a430ab8d222" }
asap-frontend-promql = { git = "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/ProjectASAP/ASAPPlanner", rev = "23270ba33009953b6c1e293ba95c6a430ab8d222" }

# Shared external (workspace)
serde.workspace = true
Expand Down Expand Up @@ -133,7 +133,7 @@ fs2 = "0.4"
# none of them.

[dev-dependencies]
asap-aware-mapping = { git = "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/ProjectASAP/ASAPPlanner", rev = "5e9396033a5a5d5f350bfa675d12770c972ee991" }
asap-aware-mapping = { git = "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/ProjectASAP/ASAPPlanner", rev = "23270ba33009953b6c1e293ba95c6a430ab8d222" }
tempfile = "3.20.0"
criterion = { version = "0.5", features = ["html_reports"] }
tokio-tungstenite = "0.21"
Expand Down
Loading
Loading