uqa-execution 0.3.5

Volcano physical operators with row-batch pipelines
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
//
// Unified Query Algebra
//
// Copyright (c) 2023-2026 Cognica, Inc.
//

//! Statement-scoped query execution and generation-aware result delivery.
mod bound_consumer;
pub mod consumer;
pub mod context;
mod execution;
pub use execution::{
    collect_query_operator, execute_query_plan_output, execute_query_plan_with_ctes,
};

pub mod directional;
pub mod directional_support;