Expand description
Zero-length path binding execution plan for DataFusion.
This module provides BindZeroLengthPathExec, a DataFusion ExecutionPlan that
converts a single-node pattern p = (a) into a Path with one node and zero edges.
§Example
Input: [{"a._vid": 1, "a._label": "Person", ...}]
Bind: p = (a)
Output: [{"a._vid": 1, "a._label": "Person", ..., "p": Path{nodes: [node1], edges: []}}]Structs§
- Bind
Zero Length Path Exec - Execution plan that binds a zero-length path for single-node patterns.