Skip to content

Commit 14be50f

Browse files
fixup(query-engine): update topk-in-binary-expr test for post-cutover API
handle_query_promql_native was removed by the #567 Stage 3 cutover (native is now the only path, folded into handle_query_promql) — this commit was squashed into the branch during rebase onto the cutover. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
1 parent 19d4c77 commit 14be50f

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

  • asap-query-engine/src/engines/simple_engine

asap-query-engine/src/engines/simple_engine/promql.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1572,8 +1572,8 @@ mod topk_pipeline_tests {
15721572
.expect("insert should succeed");
15731573

15741574
let (_, query_result) = engine
1575-
.handle_query_promql_native(format!("{TOPK_QUERY} + 0"), QUERY_TIME)
1576-
.expect("binary-expr-wrapped topk should still resolve via the native path");
1575+
.handle_query_promql(format!("{TOPK_QUERY} + 0"), QUERY_TIME)
1576+
.expect("binary-expr-wrapped topk should still resolve");
15771577

15781578
let results = match query_result {
15791579
QueryResult::Vector(iv) => iv.values,

0 commit comments

Comments
 (0)