mirror of
https://github.com/MariaDB/server.git
synced 2025-07-27 18:02:13 +03:00
Galera4
This commit is contained in:
committed by
Sergey Vojtovich
parent
382115b992
commit
36a2a185fe
@ -1485,7 +1485,6 @@ struct handlerton
|
||||
THD *victim_thd, my_bool signal);
|
||||
int (*set_checkpoint)(handlerton *hton, const XID* xid);
|
||||
int (*get_checkpoint)(handlerton *hton, XID* xid);
|
||||
void (*fake_trx_id)(handlerton *hton, THD *thd);
|
||||
/*
|
||||
Optional clauses in the CREATE/ALTER TABLE
|
||||
*/
|
||||
@ -1682,6 +1681,9 @@ handlerton *ha_default_tmp_handlerton(THD *thd);
|
||||
// Engine needs to access the main connect string in partitions
|
||||
#define HTON_CAN_READ_CONNECT_STRING_IN_PARTITION (1 <<12)
|
||||
|
||||
/* can be replicated by wsrep replication provider plugin */
|
||||
#define HTON_WSREP_REPLICATION (1 << 13)
|
||||
|
||||
class Ha_trx_info;
|
||||
|
||||
struct THD_TRANS
|
||||
@ -4837,9 +4839,6 @@ int ha_savepoint(THD *thd, SAVEPOINT *sv);
|
||||
int ha_release_savepoint(THD *thd, SAVEPOINT *sv);
|
||||
#ifdef WITH_WSREP
|
||||
int ha_abort_transaction(THD *bf_thd, THD *victim_thd, my_bool signal);
|
||||
void ha_fake_trx_id(THD *thd);
|
||||
#else
|
||||
inline void ha_fake_trx_id(THD *thd) { }
|
||||
#endif
|
||||
|
||||
/* these are called by storage engines */
|
||||
|
Reference in New Issue
Block a user