Skip to content

Commit e64906d

Browse files
committed
fix: Update comment to reflect dynamic VLP alias generation
Changed hardcoded example 'vlp.start_id' in comment to indicate that the actual alias is dynamically generated as __vlp_{left}_{right}, avoiding hardcoded table alias collisions with user variables.
1 parent 75eb6f6 commit e64906d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/render_plan/plan_builder.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -857,7 +857,7 @@ impl RenderPlanBuilder for LogicalPlan {
857857
)
858858
})?;
859859

860-
// Create join condition: u.user_id = vlp.start_id
860+
// Create join condition using the dynamic VLP alias and start node ID column
861861
let join_condition = OperatorApplication {
862862
operator: Operator::Equal,
863863
operands: vec![

0 commit comments

Comments
 (0)