Expand description
Fixed-length path binding execution plan for DataFusion.
This module provides BindFixedPathExec, a DataFusion ExecutionPlan that
synthesizes a path struct from existing node and edge columns in the batch.
Used for patterns like p = (a)-[r]->(b) or p = (a)-[r1]->(b)-[r2]->(c)
where the traversals are single-hop and the path variable needs to be materialized.
Structsยง
- Bind
Fixed Path Exec - Execution plan that binds a fixed-length path from existing node/edge columns.