mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Manual merge from mysql-trunk.
Conflicts: - mysql-test/suite/rpl/r/rpl_stm_mixing_engines.result
This commit is contained in:
168
sql/sql_class.cc
168
sql/sql_class.cc
@ -3605,13 +3605,33 @@ int THD::decide_logging_format(TABLE_LIST *tables)
|
||||
capabilities, and one with the intersection of all the engine
|
||||
capabilities.
|
||||
*/
|
||||
handler::Table_flags flags_write_some_set= 0;
|
||||
handler::Table_flags flags_some_set= 0;
|
||||
handler::Table_flags flags_all_set=
|
||||
handler::Table_flags flags_write_all_set=
|
||||
HA_BINLOG_ROW_CAPABLE | HA_BINLOG_STMT_CAPABLE;
|
||||
|
||||
my_bool multi_engine= FALSE;
|
||||
my_bool mixed_engine= FALSE;
|
||||
my_bool all_trans_engines= TRUE;
|
||||
/*
|
||||
If different types of engines are about to be updated.
|
||||
For example: Innodb and Falcon; Innodb and MyIsam.
|
||||
*/
|
||||
my_bool multi_write_engine= FALSE;
|
||||
/*
|
||||
If different types of engines are about to be accessed
|
||||
and any of them is about to be updated. For example:
|
||||
Innodb and Falcon; Innodb and MyIsam.
|
||||
*/
|
||||
my_bool multi_access_engine= FALSE;
|
||||
/*
|
||||
If non-transactional and transactional engines are about
|
||||
to be accessed and any of them is about to be updated.
|
||||
For example: Innodb and MyIsam.
|
||||
*/
|
||||
my_bool trans_non_trans_access_engines= FALSE;
|
||||
/*
|
||||
If all engines that are about to be updated are
|
||||
transactional.
|
||||
*/
|
||||
my_bool all_trans_write_engines= TRUE;
|
||||
TABLE* prev_write_table= NULL;
|
||||
TABLE* prev_access_table= NULL;
|
||||
|
||||
@ -3637,32 +3657,112 @@ int THD::decide_logging_format(TABLE_LIST *tables)
|
||||
continue;
|
||||
if (table->table->s->table_category == TABLE_CATEGORY_PERFORMANCE)
|
||||
lex->set_stmt_unsafe(LEX::BINLOG_STMT_UNSAFE_SYSTEM_TABLE);
|
||||
handler::Table_flags const flags= table->table->file->ha_table_flags();
|
||||
DBUG_PRINT("info", ("table: %s; ha_table_flags: 0x%llx",
|
||||
table->table_name, flags));
|
||||
if (table->lock_type >= TL_WRITE_ALLOW_WRITE)
|
||||
{
|
||||
handler::Table_flags const flags= table->table->file->ha_table_flags();
|
||||
DBUG_PRINT("info", ("table: %s; ha_table_flags: 0x%llx",
|
||||
table->table_name, flags));
|
||||
if (prev_write_table && prev_write_table->file->ht !=
|
||||
table->table->file->ht)
|
||||
multi_engine= TRUE;
|
||||
all_trans_engines= all_trans_engines &&
|
||||
table->table->file->has_transactions();
|
||||
multi_write_engine= TRUE;
|
||||
/*
|
||||
Every temporary table must be always written to the binary
|
||||
log in transaction boundaries and as such we artificially
|
||||
classify them as transactional.
|
||||
|
||||
Indirectly, this avoids classifying a temporary table created
|
||||
on a non-transactional engine as unsafe when it is modified
|
||||
after any transactional table:
|
||||
|
||||
BEGIN;
|
||||
INSERT INTO innodb_t VALUES (1);
|
||||
INSERT INTO myisam_t_temp VALUES (1);
|
||||
COMMIT;
|
||||
|
||||
BINARY LOG:
|
||||
|
||||
BEGIN;
|
||||
INSERT INTO innodb_t VALUES (1);
|
||||
INSERT INTO myisam_t_temp VALUES (1);
|
||||
COMMIT;
|
||||
*/
|
||||
all_trans_write_engines= all_trans_write_engines &&
|
||||
(table->table->file->has_transactions() ||
|
||||
table->table->s->tmp_table);
|
||||
prev_write_table= table->table;
|
||||
flags_all_set &= flags;
|
||||
flags_some_set |= flags;
|
||||
flags_write_all_set &= flags;
|
||||
flags_write_some_set |= flags;
|
||||
}
|
||||
if (prev_access_table && prev_access_table->file->ht != table->table->file->ht)
|
||||
mixed_engine= mixed_engine || (prev_access_table->file->has_transactions() !=
|
||||
table->table->file->has_transactions());
|
||||
flags_some_set |= flags;
|
||||
/*
|
||||
The mixture of non-transactional and transactional tables must
|
||||
identified and classified as unsafe. However, a temporary table
|
||||
must be always handled as a transactional table. Based on that,
|
||||
we have the following statements classified as mixed and by
|
||||
consequence as unsafe:
|
||||
|
||||
1: INSERT INTO myisam_t SELECT * FROM innodb_t;
|
||||
|
||||
2: INSERT INTO innodb_t SELECT * FROM myisam_t;
|
||||
|
||||
3: INSERT INTO myisam_t SELECT * FROM myisam_t_temp;
|
||||
|
||||
4: INSERT INTO myisam_t_temp SELECT * FROM myisam_t;
|
||||
|
||||
5: CREATE TEMPORARY TABLE myisam_t_temp SELECT * FROM mysiam_t;
|
||||
|
||||
The following statements are not considered mixed and as such
|
||||
are safe:
|
||||
|
||||
1: INSERT INTO innodb_t SELECT * FROM myisam_t_temp;
|
||||
|
||||
2: INSERT INTO myisam_t_temp SELECT * FROM innodb_t_temp;
|
||||
*/
|
||||
if (!trans_non_trans_access_engines && prev_access_table &&
|
||||
(lex->sql_command != SQLCOM_CREATE_TABLE ||
|
||||
(lex->sql_command == SQLCOM_CREATE_TABLE &&
|
||||
(lex->create_info.options & HA_LEX_CREATE_TMP_TABLE))))
|
||||
{
|
||||
my_bool prev_trans;
|
||||
my_bool act_trans;
|
||||
if (prev_access_table->s->tmp_table || table->table->s->tmp_table)
|
||||
{
|
||||
prev_trans= prev_access_table->s->tmp_table ? TRUE :
|
||||
prev_access_table->file->has_transactions();
|
||||
act_trans= table->table->s->tmp_table ? TRUE :
|
||||
table->table->file->has_transactions();
|
||||
}
|
||||
else
|
||||
{
|
||||
prev_trans= prev_access_table->file->has_transactions();
|
||||
act_trans= table->table->file->has_transactions();
|
||||
}
|
||||
trans_non_trans_access_engines= (prev_trans != act_trans);
|
||||
multi_access_engine= TRUE;
|
||||
}
|
||||
thread_temporary_used |= table->table->s->tmp_table;
|
||||
prev_access_table= table->table;
|
||||
}
|
||||
|
||||
DBUG_PRINT("info", ("flags_write_all_set: 0x%llx", flags_write_all_set));
|
||||
DBUG_PRINT("info", ("flags_write_some_set: 0x%llx", flags_write_some_set));
|
||||
DBUG_PRINT("info", ("flags_some_set: 0x%llx", flags_some_set));
|
||||
DBUG_PRINT("info", ("multi_write_engine: %d", multi_write_engine));
|
||||
DBUG_PRINT("info", ("multi_access_engine: %d", multi_access_engine));
|
||||
DBUG_PRINT("info", ("trans_non_trans_access_engines: %d",
|
||||
trans_non_trans_access_engines));
|
||||
|
||||
int error= 0;
|
||||
int unsafe_flags;
|
||||
|
||||
/*
|
||||
Set the statement as unsafe if:
|
||||
|
||||
. it is a mixed statement, i.e. access transactional and non-transactional
|
||||
tables, and updates at least one;
|
||||
or
|
||||
tables, and update any of them;
|
||||
|
||||
or:
|
||||
|
||||
. an early statement updated a transactional table;
|
||||
. and, the current statement updates a non-transactional table.
|
||||
|
||||
@ -3676,6 +3776,12 @@ int THD::decide_logging_format(TABLE_LIST *tables)
|
||||
|
||||
2: INSERT INTO innodb_t SELECT * FROM myisam_t;
|
||||
|
||||
3: INSERT INTO myisam_t SELECT * FROM myisam_t_temp;
|
||||
|
||||
4: INSERT INTO myisam_t_temp SELECT * FROM myisam_t;
|
||||
|
||||
5: CREATE TEMPORARY TABLE myisam_t_temp SELECT * FROM mysiam_t;
|
||||
|
||||
are classified as unsafe to ensure that in mixed mode the execution is
|
||||
completely safe and equivalent to the row mode. Consider the following
|
||||
statements and sessions (connections) to understand the reason:
|
||||
@ -3726,32 +3832,26 @@ int THD::decide_logging_format(TABLE_LIST *tables)
|
||||
isolation level but if we have pure repeatable read or serializable the
|
||||
lock history on the slave will be different from the master.
|
||||
*/
|
||||
if (mixed_engine ||
|
||||
(trans_has_updated_trans_table(this) && !all_trans_engines))
|
||||
if (trans_non_trans_access_engines)
|
||||
lex->set_stmt_unsafe(LEX::BINLOG_STMT_UNSAFE_MIXED_STATEMENT);
|
||||
else if (trans_has_updated_trans_table(this) && !all_trans_write_engines)
|
||||
lex->set_stmt_unsafe(LEX::BINLOG_STMT_UNSAFE_NONTRANS_AFTER_TRANS);
|
||||
|
||||
DBUG_PRINT("info", ("flags_all_set: 0x%llx", flags_all_set));
|
||||
DBUG_PRINT("info", ("flags_some_set: 0x%llx", flags_some_set));
|
||||
DBUG_PRINT("info", ("multi_engine: %d", multi_engine));
|
||||
|
||||
int error= 0;
|
||||
int unsafe_flags;
|
||||
|
||||
/*
|
||||
If more than one engine is involved in the statement and at
|
||||
least one is doing it's own logging (is *self-logging*), the
|
||||
statement cannot be logged atomically, so we generate an error
|
||||
rather than allowing the binlog to become corrupt.
|
||||
*/
|
||||
if (multi_engine &&
|
||||
(flags_some_set & HA_HAS_OWN_BINLOGGING))
|
||||
{
|
||||
if (multi_write_engine &&
|
||||
(flags_write_some_set & HA_HAS_OWN_BINLOGGING))
|
||||
my_error((error= ER_BINLOG_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE),
|
||||
MYF(0));
|
||||
}
|
||||
else if (multi_access_engine && flags_some_set & HA_HAS_OWN_BINLOGGING)
|
||||
lex->set_stmt_unsafe(LEX::BINLOG_STMT_UNSAFE_MULTIPLE_ENGINES_AND_SELF_LOGGING_ENGINE);
|
||||
|
||||
/* both statement-only and row-only engines involved */
|
||||
if ((flags_all_set & (HA_BINLOG_STMT_CAPABLE | HA_BINLOG_ROW_CAPABLE)) == 0)
|
||||
if ((flags_write_all_set & (HA_BINLOG_STMT_CAPABLE | HA_BINLOG_ROW_CAPABLE)) == 0)
|
||||
{
|
||||
/*
|
||||
1. Error: Binary logging impossible since both row-incapable
|
||||
@ -3760,7 +3860,7 @@ int THD::decide_logging_format(TABLE_LIST *tables)
|
||||
my_error((error= ER_BINLOG_ROW_ENGINE_AND_STMT_ENGINE), MYF(0));
|
||||
}
|
||||
/* statement-only engines involved */
|
||||
else if ((flags_all_set & HA_BINLOG_ROW_CAPABLE) == 0)
|
||||
else if ((flags_write_all_set & HA_BINLOG_ROW_CAPABLE) == 0)
|
||||
{
|
||||
if (lex->is_stmt_row_injection())
|
||||
{
|
||||
@ -3808,7 +3908,7 @@ int THD::decide_logging_format(TABLE_LIST *tables)
|
||||
*/
|
||||
my_error((error= ER_BINLOG_ROW_INJECTION_AND_STMT_MODE), MYF(0));
|
||||
}
|
||||
else if ((flags_all_set & HA_BINLOG_STMT_CAPABLE) == 0)
|
||||
else if ((flags_write_all_set & HA_BINLOG_STMT_CAPABLE) == 0)
|
||||
{
|
||||
/*
|
||||
5. Error: Cannot modify table that uses a storage engine
|
||||
@ -3836,7 +3936,7 @@ int THD::decide_logging_format(TABLE_LIST *tables)
|
||||
else
|
||||
{
|
||||
if (lex->is_stmt_unsafe() || lex->is_stmt_row_injection()
|
||||
|| (flags_all_set & HA_BINLOG_STMT_CAPABLE) == 0)
|
||||
|| (flags_write_all_set & HA_BINLOG_STMT_CAPABLE) == 0)
|
||||
{
|
||||
/* log in row format! */
|
||||
set_current_stmt_binlog_format_row_if_mixed();
|
||||
|
Reference in New Issue
Block a user