mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
ndb - bug#30914
Dont add insert+delete tuple(s) to lcp-keep-list
This commit is contained in:
parent
49fadd9893
commit
f15444833e
1 changed files with 2 additions and 1 deletions
|
@ -181,7 +181,8 @@ Dbtup::dealloc_tuple(Signal* signal,
|
|||
&disk, tmpptr, gci);
|
||||
}
|
||||
|
||||
if (! (bits & Tuple_header::LCP_SKIP) && lcpScan_ptr_i != RNIL)
|
||||
if (! (bits & (Tuple_header::LCP_SKIP | Tuple_header::ALLOC)) &&
|
||||
lcpScan_ptr_i != RNIL)
|
||||
{
|
||||
ScanOpPtr scanOp;
|
||||
c_scanOpPool.getPtr(scanOp, lcpScan_ptr_i);
|
||||
|
|
Loading…
Reference in a new issue