diff options
author | serg@sergbook.mysql.com <> | 2002-08-12 15:11:58 +0200 |
---|---|---|
committer | serg@sergbook.mysql.com <> | 2002-08-12 15:11:58 +0200 |
commit | efe85086c6648b426d58eaae069c640a0f7e18c4 (patch) | |
tree | 38fc18efc8699b1e8515c0d6c7b9d672ade0aa0a /innobase | |
parent | ce61cb54c84a6c101fa917aeffacbcf251874250 (diff) | |
download | mariadb-git-efe85086c6648b426d58eaae069c640a0f7e18c4.tar.gz |
undo InnoDB HANDLER patch as it should not go into 3.23 tree
Diffstat (limited to 'innobase')
-rw-r--r-- | innobase/include/trx0trx.h | 7 | ||||
-rw-r--r-- | innobase/trx/trx0trx.c | 11 |
2 files changed, 0 insertions, 18 deletions
diff --git a/innobase/include/trx0trx.h b/innobase/include/trx0trx.h index e1f65e9da0f..84d85fcaff6 100644 --- a/innobase/include/trx0trx.h +++ b/innobase/include/trx0trx.h @@ -117,13 +117,6 @@ void trx_start_if_not_started( /*=====================*/ trx_t* trx); /* in: transaction */ -/***************************************************************** -Starts the transaction if it is not yet started. */ - -void -trx_start_if_not_started_noninline( -/*===============================*/ - trx_t* trx); /* in: transaction */ /******************************************************************** Commits a transaction. */ diff --git a/innobase/trx/trx0trx.c b/innobase/trx/trx0trx.c index b8cf7ad4a6d..94a11042de5 100644 --- a/innobase/trx/trx0trx.c +++ b/innobase/trx/trx0trx.c @@ -39,17 +39,6 @@ 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. */ |