Commit 2d112102 authored by joreland@mysql.com's avatar joreland@mysql.com

Handle DELETE/INSERT as update in operations started before LCP

parent dacc257b
......@@ -265,7 +265,8 @@ void Dbtup::lcpSaveCopyListLab(Signal* signal, CheckpointInfoPtr ciPtr)
// We ensure that we have actually allocated the tuple header and
// also found it. Otherwise we will fill the undo log with garbage.
/* ---------------------------------------------------------------- */
if (regOpPtr.p->optype == ZUPDATE) {
if (regOpPtr.p->optype == ZUPDATE ||
(regOpPtr.p->optype == ZINSERT && regOpPtr.p->deleteInsertFlag)) {
ljam();
if (regOpPtr.p->realPageIdC != RNIL) {
/* ---------------------------------------------------------------- */
......
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