Commit 2559122c authored by unknown's avatar unknown

Missing result handling in bug fix for bug#3912

parent 7d4fd8d9
......@@ -880,7 +880,7 @@ Ndb::opTupleIdOnNdb(Uint32 aTableId, Uint64 opValue, Uint32 op)
tOperation->def_label(0);
tOperation->interpret_exit_nok(9999);
if (tConnection->execute( Commit ) == -1 )
if ( (result = tConnection->execute( Commit )) == -1 )
goto error_handler;
if (result == 9999)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment