Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
61fdb61
feat(promql): bind canonical queries to native exact kernels
zzylol Sep 14, 2026
269143d
test(promql): cover every aggregation and range function with exact s…
zzylol Sep 14, 2026
b6a5402
test(promql): satisfy clippy and record PR branch validation
zzylol Sep 14, 2026
5bf7e87
test: remove exact execution smoke scope from PR 728
zzylol Sep 22, 2026
903c026
Merge remote-tracking branch 'origin/main' into test/pr728-level1
zzylol Sep 22, 2026
3a2d31a
test: verify issue 754 workload physical plans using shared cases
zzylol Sep 22, 2026
f7d7fb1
test: share instant and range evaluations for issue 754
zzylol Sep 22, 2026
2f28cfc
test: assert cost-selected issue 754 plans and explicit exact gaps
zzylol Sep 22, 2026
4638fc9
test: make topk truncate within each label group
zzylol Sep 22, 2026
e9274a3
test: assert query-specific issue 754 physical DAGs
zzylol Sep 22, 2026
b847b84
test: fail level one when ASAP plans fall back to exact
zzylol Sep 22, 2026
8641eee
test: expose planner candidates and assert reviewed physical plans
zzylol Sep 22, 2026
6950d07
fix: preserve Planner exact families through physical execution
zzylol Sep 22, 2026
c4bcdc9
refactor: carry Planner families through catalog and DAG execution
zzylol Sep 22, 2026
a842c9f
refactor: execute precompute from validated post-ASAP DAGs
zzylol Sep 22, 2026
cd46ab2
Merge precompute DAG prerequisite into level-1 tests
zzylol Sep 22, 2026
a1191c8
merge: stack PR 728 on PR 749
zzylol Sep 22, 2026
d17e67c
Merge branch 'stack/requested-749' into stack/requested-728
zzylol Sep 22, 2026
cce58e3
Merge branch 'stack/requested-749' into stack/requested-728
zzylol Sep 22, 2026
59a4e0a
test: follow summary definition catalog in stacked plan assertions
zzylol Sep 22, 2026
87e854b
Merge Planner selection baseline into level-1 plan coverage
zzylol Sep 23, 2026
8029302
Merge branch 'stack/planner-api-749' into stack/planner-api-728
zzylol Sep 23, 2026
4da4ffb
Merge branch 'stack/planner-api-749' into stack/planner-api-728
zzylol Sep 23, 2026
5c43625
Merge branch 'stack/planner-api-749' into stack/planner-api-728
zzylol Sep 23, 2026
340a319
fix: remove declaration for deleted edge runtime adapter
zzylol Sep 23, 2026
50ceeae
Merge branch 'stack/planner-api-749' into stack/planner-api-728
zzylol Sep 23, 2026
bbda89c
Merge branch 'restack/728-production' into restack/728-tests
zzylol Sep 24, 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
9 changes: 9 additions & 0 deletions .github/workflows/mvp-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,18 @@ jobs:
CARGO_NET_GIT_FETCH_WITH_CLI: "true"
# Give background flusher/sealer waits headroom on hosted runners.
ASAP_TEST_TIMEOUT_SCALE: "4"
ASAP_LEVEL1_ARTIFACT_DIR: ${{ github.workspace }}/artifacts/issue754-level1
working-directory: ASAPQuery-backend
# Persistence tests wait on background flushers with bounded deadlines.
# Match scripts/e2e.sh to avoid competing flushers exhausting those waits.
run: |
export ASAP_E2E_CONTROL_PLANE_BIN="$PWD/target/debug/control_plane"
cargo test --workspace --locked -- --test-threads=1

- name: Upload issue 754 level-1 plans
if: always()
uses: actions/upload-artifact@v4
with:
name: issue754-level1-plans
path: artifacts/issue754-level1
if-no-files-found: ignore
Loading
Loading