pub trait FactorizedOperator {
// Required method
fn next_factorized(&mut self) -> FactorizedResult;
}Expand description
Trait for operators that can provide factorized output.
This trait allows the planner to check if an operator can provide factorized data for factorized aggregation.
Required Methods§
Sourcefn next_factorized(&mut self) -> FactorizedResult
fn next_factorized(&mut self) -> FactorizedResult
Returns the next chunk as factorized data.