mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
Bug #31848: Test failure: Cluster has problems on insert with auto-increment
Fix uninitialized variable causing failures for some interpreted update operations on gcc 4.2.1.
This commit is contained in:
parent
b77f44c76d
commit
084849d917
1 changed files with 2 additions and 1 deletions
|
@ -1138,7 +1138,8 @@ Dbtup::updateStartLab(Signal* signal,
|
|||
regOperPtr->attrinbufLen);
|
||||
} else {
|
||||
jam();
|
||||
if (interpreterStartLab(signal, pagePtr, regOperPtr->pageOffset) == -1)
|
||||
retValue = interpreterStartLab(signal, pagePtr, regOperPtr->pageOffset);
|
||||
if (retValue == -1)
|
||||
{
|
||||
jam();
|
||||
return -1;
|
||||
|
|
Loading…
Reference in a new issue