Skip to main content

Module bind_zero_length_path

Module bind_zero_length_path 

Source
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§

BindZeroLengthPathExec
Execution plan that binds a zero-length path for single-node patterns.