diff options
Diffstat (limited to 'innobase/include/trx0trx.ic')
-rw-r--r-- | innobase/include/trx0trx.ic | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/innobase/include/trx0trx.ic b/innobase/include/trx0trx.ic index 9d453047600..78e5acda148 100644 --- a/innobase/include/trx0trx.ic +++ b/innobase/include/trx0trx.ic @@ -21,3 +21,22 @@ trx_start_if_not_started( trx_start(trx, ULINT_UNDEFINED); } } + +/***************************************************************** +Starts the transaction if it is not yet started. Assumes we have reserved +the kernel mutex! */ +UNIV_INLINE +void +trx_start_if_not_started_low( +/*=========================*/ + trx_t* trx) /* in: transaction */ +{ + ut_ad(trx->conc_state != TRX_COMMITTED_IN_MEMORY); + + if (trx->conc_state == TRX_NOT_STARTED) { + + trx_start_low(trx, ULINT_UNDEFINED); + } +} + + |