Implement checked aggregation plans, native SQL, and bounded RPC capture

This commit is contained in:
Timothy J. Aveni
2026-09-17 18:23:16 -07:00
parent 13d2d0b1ee
commit b86dbe2dfa
11 changed files with 2190 additions and 28 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
import { decodeQxValue } from "./bindings.js";
export function decodeQuerySnapshot(response, output, runId, sequence) {
if (response.preparationToken || response.residualWindows.length)
if (response.preparationToken || response.residualWindows.length || response.relationalCaptures.length)
throw new Error("QUERY_RESULT_UNFINISHED: private preparation is not a query result");
const fields = [
...response.pending.map((field) => ({ path: field.path, status: "pending" })),