Skip to content

Commit d1f18ed

Browse files
committed
[ga-format-pr] Run ./format_repo.sh to fix formatting
1 parent 3752952 commit d1f18ed

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

sql/rowexec/join_iters.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ func (i *joinIter) Next(ctx *sql.Context) (sql.Row, error) {
185185
}
186186

187187
i.foundMatch = true
188-
188+
189189
// For semi joins, close secondary iterator and move to next primary row after first match
190190
// This ensures each primary row is emitted at most once (semi join semantics)
191191
if i.joinType.IsSemi() {
@@ -198,7 +198,7 @@ func (i *joinIter) Next(ctx *sql.Context) (sql.Row, error) {
198198
// For semi joins, return only the primary row, not the combined row
199199
return i.removeParentRow(i.buildRow(primary, nil)), nil
200200
}
201-
201+
202202
return i.removeParentRow(row), nil
203203
}
204204
}

0 commit comments

Comments
 (0)