mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Merge bk-internal:/home/bk/mysql-5.0
into neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint
This commit is contained in:
@ -1340,11 +1340,20 @@ public:
|
||||
|
||||
/*
|
||||
last_insert_id_used is set when current statement calls
|
||||
LAST_INSERT_ID() or reads @@LAST_INSERT_ID, so that binary log
|
||||
LAST_INSERT_ID_EVENT be generated.
|
||||
LAST_INSERT_ID() or reads @@LAST_INSERT_ID.
|
||||
*/
|
||||
bool last_insert_id_used;
|
||||
|
||||
/*
|
||||
last_insert_id_used is set when current statement or any stored
|
||||
function called from this statement calls LAST_INSERT_ID() or
|
||||
reads @@LAST_INSERT_ID, so that binary log LAST_INSERT_ID_EVENT be
|
||||
generated. Required for statement-based binary log for issuing
|
||||
"SET LAST_INSERT_ID= #" before "SELECT func()", if func() reads
|
||||
LAST_INSERT_ID.
|
||||
*/
|
||||
bool last_insert_id_used_bin_log;
|
||||
|
||||
/*
|
||||
insert_id_used is set when current statement updates
|
||||
THD::last_insert_id, so that binary log INSERT_ID_EVENT be
|
||||
|
Reference in New Issue
Block a user