mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 20:42:30 +01:00
Missing result handling in bug fix for bug#3912
This commit is contained in:
parent
af0f14ded4
commit
9e93c0acff
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue