summaryrefslogtreecommitdiff
path: root/storage/innobase/handler/ha_innodb.cc
diff options
context:
space:
mode:
authorJan Lindström <jan.lindstrom@mariadb.com>2021-05-10 11:59:56 +0300
committerJan Lindström <jan.lindstrom@mariadb.com>2021-05-14 08:38:13 +0300
commit670ef2d970809a2fcdd98d74a7e8c0d892e88233 (patch)
tree049c459572b21a138b783bf692bda4e0de61066c /storage/innobase/handler/ha_innodb.cc
parentc9b897123202599aa2897983295c36e124e03f9c (diff)
downloadmariadb-git-670ef2d970809a2fcdd98d74a7e8c0d892e88233.tar.gz
Tolerate missing wsrep trx
Diffstat (limited to 'storage/innobase/handler/ha_innodb.cc')
-rw-r--r--storage/innobase/handler/ha_innodb.cc7
1 files changed, 7 insertions, 0 deletions
diff --git a/storage/innobase/handler/ha_innodb.cc b/storage/innobase/handler/ha_innodb.cc
index feb21867297..48fcc8fb376 100644
--- a/storage/innobase/handler/ha_innodb.cc
+++ b/storage/innobase/handler/ha_innodb.cc
@@ -19009,6 +19009,13 @@ no_victim:
goto ret_awake;
case WSREP_OK:
break;
+ case WSREP_TRX_MISSING:
+ WSREP_DEBUG("calcel commit trx missing: "
+ "rcode %d wsrep_trx_id %ld trx: "
+ TRX_ID_FMT,
+ rcode, victim_trx->id,
+ wsrep_handle->trx_id);
+ break;
default:
WSREP_ERROR(
"cancel commit bad exit: %d "