MySQL 9.1.0
Source Code Documentation
|
Functions | |
bool | commit_one_ht (THD *thd, plugin_ref plugin, void *arg) |
Invokes the handler interface for the storage engine, the handler::commit_by_xid function. More... | |
bool | rollback_one_ht (THD *thd, plugin_ref plugin, void *arg) |
Invokes the handler interface for the storage engine, the handler::rollback_by_xid function. More... | |
int | set_prepared_in_tc_one_ht (THD *thd, handlerton *ht) |
Invokes the handler interface for the storage engine, the handler::prepared_in_tc function. More... | |
bool anonymous_namespace{tc_log.cc}::commit_one_ht | ( | THD * | thd, |
plugin_ref | plugin, | ||
void * | arg | ||
) |
Invokes the handler interface for the storage engine, the handler::commit_by_xid
function.
thd | The THD session object within which the command is being executed. |
plugin | The plugin_ref object associated with the given storage engine. |
arg | The XID of the transaction being committed. |
false | Success |
true | Failure |
bool anonymous_namespace{tc_log.cc}::rollback_one_ht | ( | THD * | thd, |
plugin_ref | plugin, | ||
void * | arg | ||
) |
Invokes the handler interface for the storage engine, the handler::rollback_by_xid
function.
thd | The THD session object within which the command is being executed. |
plugin | The plugin_ref object associated with the given storage engine. |
arg | The XID of the transaction being relled back. |
false | Success |
true | Failure |
int anonymous_namespace{tc_log.cc}::set_prepared_in_tc_one_ht | ( | THD * | thd, |
handlerton * | ht | ||
) |
Invokes the handler interface for the storage engine, the handler::prepared_in_tc
function.
thd | The THD session object within which the command is being executed. |
ht | The pointer to the target SE plugin. |