Expand description
Physical operators for query execution.
This module provides the physical operators that form the execution tree:
- Scan: Read nodes/edges from storage
- Filter: Apply predicates to filter rows
- Project: Select and transform columns
- Join: Hash join and nested loop join
- Aggregate: Group by and aggregation functions
Structs§
- Filter
Operator - A filter operator that applies a predicate to filter rows.
- Project
Operator - A project operator that selects and transforms columns.
- Scan
Operator - A scan operator that reads nodes from storage.
Enums§
- Operator
Error - Error during operator execution.
Traits§
- Operator
- Trait for physical operators.
Type Aliases§
- Operator
Result - Result of executing an operator.