summaryrefslogtreecommitdiff
path: root/innobase/trx/trx0roll.c
diff options
context:
space:
mode:
Diffstat (limited to 'innobase/trx/trx0roll.c')
-rw-r--r--innobase/trx/trx0roll.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/innobase/trx/trx0roll.c b/innobase/trx/trx0roll.c
index 6b74c0d0d51..2adeb1cf57c 100644
--- a/innobase/trx/trx0roll.c
+++ b/innobase/trx/trx0roll.c
@@ -98,6 +98,8 @@ trx_rollback_for_mysql(
return(DB_SUCCESS);
}
+
+ trx->op_info = "rollback";
/* Tell Innobase server that there might be work for
utility threads: */
@@ -111,6 +113,8 @@ trx_rollback_for_mysql(
srv_active_wake_master_thread();
+ trx->op_info = "";
+
return(err);
}
@@ -129,6 +133,8 @@ trx_rollback_last_sql_stat_for_mysql(
return(DB_SUCCESS);
}
+
+ trx->op_info = "rollback of SQL statement";
/* Tell Innobase server that there might be work for
utility threads: */
@@ -144,6 +150,8 @@ trx_rollback_last_sql_stat_for_mysql(
srv_active_wake_master_thread();
+ trx->op_info = "";
+
return(err);
}