diff options
author | Jan Lindström <jan.lindstrom@mariadb.com> | 2019-10-02 13:24:34 +0300 |
---|---|---|
committer | Jan Lindström <jan.lindstrom@mariadb.com> | 2020-02-11 15:17:50 +0200 |
commit | e6a50e41da5e9e55031b978fba19a2b3ec4928b8 (patch) | |
tree | 1a0c544ca982ce3059d0f8107735051d311371a4 /sql/sql_rename.cc | |
parent | 41541a7c48697cf139cee309211226dce1f21d72 (diff) | |
download | mariadb-git-e6a50e41da5e9e55031b978fba19a2b3ec4928b8.tar.gz |
MDEV-20051: Add new mode to wsrep_OSU_method in which Galera checks storage engine of the effected table
Introduced a new wsrep_strict_ddl configuration variable in which
Galera checks storage engine of the effected table. If table is not
InnoDB (only storage engine currently fully supporting Galera
replication) DDL-statement will return error code:
ER_GALERA_REPLICATION_NOT_SUPPORTED
eng "DDL-statement is forbidden as table storage engine does not support Galera replication"
However, when wsrep_replicate_myisam=ON we allow DDL-statements to
MyISAM tables. If effected table is allowed storage engine Galera
will run normal TOI.
This new setting should be for now set globally on all
nodes in a cluster. When this setting is set following DDL-clauses
accessing tables not supporting Galera replication are refused:
* CREATE TABLE (e.g. CREATE TABLE t1(a int) engine=Aria
* ALTER TABLE
* TRUNCATE TABLE
* CREATE VIEW
* CREATE TRIGGER
* CREATE INDEX
* DROP INDEX
* RENAME TABLE
* DROP TABLE
Statements on PROCEDURE, EVENT, FUNCTION are allowed as effected
tables are known only at execution. Furthermore, USER, ROLE, SERVER,
DATABASE statements are also allowed as they do not really have
effected table.
Diffstat (limited to 'sql/sql_rename.cc')
-rw-r--r-- | sql/sql_rename.cc | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/sql/sql_rename.cc b/sql/sql_rename.cc index 1c6cf52963a..8f818e321dd 100644 --- a/sql/sql_rename.cc +++ b/sql/sql_rename.cc @@ -286,6 +286,13 @@ do_rename(THD *thd, TABLE_LIST *ren_table, const LEX_CSTRING *new_db, if (ha_table_exists(thd, &ren_table->db, &old_alias, &hton) && hton) { DBUG_ASSERT(!thd->locked_tables_mode); + +#ifdef WITH_WSREP + if (WSREP(thd) && hton && + !wsrep_should_replicate_ddl(thd, hton->db_type)) + DBUG_RETURN(1); +#endif + tdc_remove_table(thd, TDC_RT_REMOVE_ALL, ren_table->db.str, ren_table->table_name.str); |