summaryrefslogtreecommitdiff
path: root/innobase/trx/trx0trx.c
diff options
context:
space:
mode:
authormonty@hundin.mysql.fi <>2002-08-12 04:04:43 +0300
committermonty@hundin.mysql.fi <>2002-08-12 04:04:43 +0300
commit3ef9d44edcd3db115d03a6ed7e896c662ad2182e (patch)
tree4ba65b7347df0448111dd1a3ab055bc2c8a1c6dc /innobase/trx/trx0trx.c
parentc99c1fd38439a7c529dc24c03c5ff586ba694c57 (diff)
parentd825808a726960fa4fde7d4569c2d95014ca440f (diff)
downloadmariadb-git-3ef9d44edcd3db115d03a6ed7e896c662ad2182e.tar.gz
merge with 3.23.52
Diffstat (limited to 'innobase/trx/trx0trx.c')
-rw-r--r--innobase/trx/trx0trx.c13
1 files changed, 12 insertions, 1 deletions
diff --git a/innobase/trx/trx0trx.c b/innobase/trx/trx0trx.c
index ef17588a2bb..994a6777924 100644
--- a/innobase/trx/trx0trx.c
+++ b/innobase/trx/trx0trx.c
@@ -39,6 +39,17 @@ sess_t* trx_dummy_sess = NULL;
the kernel mutex */
ulint trx_n_mysql_transactions = 0;
+/*****************************************************************
+Starts the transaction if it is not yet started. */
+
+void
+trx_start_if_not_started_noninline(
+/*===============================*/
+ trx_t* trx) /* in: transaction */
+{
+ trx_start_if_not_started(trx);
+}
+
/********************************************************************
Retrieves the error_info field from a trx. */
@@ -1465,7 +1476,7 @@ void
trx_print(
/*======*/
char* buf, /* in/out: buffer where to print, must be at least
- 500 bytes */
+ 800 bytes */
trx_t* trx) /* in: transaction */
{
char* start_of_line;