Commit 6910466b authored by Zardosht Kasheff's avatar Zardosht Kasheff Committed by Yoni Fogel

[t:2403], set last_dup_key in update_row

git-svn-id: file:///svn/mysql/tokudb-engine/tokudb-engine@18045 c7de825b-a66e-492c-adef-691d508d4ae1
parent bda202d3
...@@ -3439,7 +3439,10 @@ int ha_tokudb::update_row(const uchar * old_row, uchar * new_row) { ...@@ -3439,7 +3439,10 @@ int ha_tokudb::update_row(const uchar * old_row, uchar * new_row) {
); );
lockretry_wait; lockretry_wait;
} }
if (!error) { if (error == DB_KEYEXIST) {
last_dup_key = primary_key;
}
else if (!error) {
trx->stmt_progress.updated++; trx->stmt_progress.updated++;
track_progress(thd); track_progress(thd);
} }
......
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