mirror of
https://github.com/MariaDB/server.git
synced 2025-08-08 11:22:35 +03:00
cleanup: pass trxid by value
This commit is contained in:
@@ -124,7 +124,7 @@
|
||||
static inline struct PSI_transaction_locker *
|
||||
inline_mysql_start_transaction(PSI_transaction_locker_state *state,
|
||||
const void *xid,
|
||||
const ulonglong *trxid,
|
||||
ulonglong trxid,
|
||||
int isolation_level,
|
||||
my_bool read_only,
|
||||
my_bool autocommit,
|
||||
|
@@ -2205,7 +2205,7 @@ typedef void (*end_statement_v1_t)
|
||||
*/
|
||||
typedef struct PSI_transaction_locker* (*get_thread_transaction_locker_v1_t)
|
||||
(struct PSI_transaction_locker_state_v1 *state, const void *xid,
|
||||
const ulonglong *trxid, int isolation_level, my_bool read_only,
|
||||
ulonglong trxid, int isolation_level, my_bool read_only,
|
||||
my_bool autocommit);
|
||||
|
||||
/**
|
||||
|
@@ -602,7 +602,7 @@ typedef void (*end_statement_v1_t)
|
||||
(struct PSI_statement_locker *locker, void *stmt_da);
|
||||
typedef struct PSI_transaction_locker* (*get_thread_transaction_locker_v1_t)
|
||||
(struct PSI_transaction_locker_state_v1 *state, const void *xid,
|
||||
const ulonglong *trxid, int isolation_level, my_bool read_only,
|
||||
ulonglong trxid, int isolation_level, my_bool read_only,
|
||||
my_bool autocommit);
|
||||
typedef void (*start_transaction_v1_t)
|
||||
(struct PSI_transaction_locker *locker,
|
||||
|
Reference in New Issue
Block a user