Skip to content

Commit 0aee958

Browse files
committed
Fix, thanks to Alex.
1 parent ddbc39a commit 0aee958

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/dsql/StmtNodes.cpp

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8907,8 +8907,7 @@ const StmtNode* StoreNode::store(thread_db* tdbb, Request* request, WhichTrigger
89078907

89088908
rpb->rpb_number.setValid(true);
89098909

8910-
if (relation && (relation->rel_post_store || relation->isSystem()) &&
8911-
relation->rel_post_store && whichTrig != PRE_TRIG)
8910+
if (relation && (relation->rel_post_store || relation->isSystem()) && whichTrig != PRE_TRIG)
89128911
{
89138912
EXE_execute_triggers(tdbb, &relation->rel_post_store, NULL, rpb,
89148913
TRIGGER_INSERT, POST_TRIG);

0 commit comments

Comments
 (0)