Skip to content

Commit

Permalink
Fix #7958 - Unrecognized C++ exception (master only regression).
Browse files Browse the repository at this point in the history
  • Loading branch information
asfernandes committed Jan 14, 2024
1 parent ac4162e commit 52a1399
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/dsql/DdlNodes.epp
Original file line number Diff line number Diff line change
Expand Up @@ -6249,7 +6249,8 @@ bool RelationNode::deleteLocalField(thread_db* tdbb, jrd_tra* transaction,
if (!preChangeHandlerWasExecuted)
{
preChangeHandlerWasExecuted = true;
preChangeHandler();
if (preChangeHandler)
preChangeHandler();
}
};

Expand Down

0 comments on commit 52a1399

Please sign in to comment.