Skip to main content

Module bind_fixed_path

Module bind_fixed_path 

Source
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ยง

BindFixedPathExec
Execution plan that binds a fixed-length path from existing node/edge columns.