Expand description
Minimal typed query AST, planning, and execution (0.7.0).
Structs§
- OrderBy
- Query
- Query
RowIter - Pull-based row iterator for simple queries (0.7 execution boundary).
Enums§
Functions§
- execute_
query - execute_
query_ iter - Same planning and row sources as
execute_query, but as a lazy iterator. - execute_
query_ iter_ owned - Like
execute_query_iter, but holds an owned live snapshot (for attached read-only handles). - execute_
query_ iter_ with_ spill_ path - Like
execute_query_iter, but whenq.order_byis set this will attempt a bounded-memory external sort by spilling ephemeralTempsegments to a dedicated temporary file. - explain_
query - spillable_
group_ count_ sum_ i64 - Spillable aggregation (v0): group-by one
int64field and computeCOUNT+SUM(int64). - spillable_
hash_ join_ match_ count_ i64 - Minimal spill-capable join foundation (v0): equi-join match count on one
int64key.