Skip to content

Commit c1954c4

Browse files
committed
Fix #8619 - Regression in 6.0.0.653 ("Stack overflow. ... requirements of the runtime stack have exceeded the memory").
1 parent d391ef3 commit c1954c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/jrd/recsrc/NestedLoopJoin.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,7 @@ void NestedLoopJoin::internalGetPlan(thread_db* tdbb, PlanEntry& planEntry, unsi
249249
planEntry.lines.add().text = "Nested Loop Join " + printType();
250250
printOptInfo(planEntry.lines);
251251

252-
Join::getPlan(tdbb, planEntry, level, recurse);
252+
Join::internalGetPlan(tdbb, planEntry, level, recurse);
253253
}
254254

255255
bool NestedLoopJoin::fetchRecord(thread_db* tdbb, FB_SIZE_T n) const

0 commit comments

Comments
 (0)