mirror of
https://github.com/MariaDB/server.git
synced 2025-01-19 05:22:25 +01:00
f72611b4fa
Added initialization of all important global variables BUILD/SETUP.sh: build with readline client/mysqltest.c: Added variable SERVER_VERSION myisam/mi_key.c: Indentation change myisam/mi_open.c: After merge fix myisam/mi_range.c: After merge fix myisam/mi_rkey.c: After merge fix myisam/mi_search.c: After merge fix myisam/myisamdef.h: After merge fix mysql-test/include/not_embedded.inc: Fix test (because of wrong utf8 test) mysql-test/r/alter_table.result: Updated results after merge mysql-test/r/create.result: Updated results after merge mysql-test/r/ctype_recoding.result: Updated results after merge mysql-test/r/fulltext.result: Updated results after merge mysql-test/r/func_group.result: Updated results after merge mysql-test/r/group_by.result: Updated results after merge mysql-test/r/innodb.result: Updated results after merge mysql-test/r/join_outer.result: Updated results after merge mysql-test/r/null_key.result: Updated results after merge mysql-test/r/order_by.result: Updated results after merge mysql-test/r/query_cache.result: Updated results after merge mysql-test/r/repair.result: Updated results after merge mysql-test/r/rpl_flush_tables.result: Updated results after merge mysql-test/r/union.result: Updated results after merge mysql-test/r/update.result: Updated results after merge mysql-test/t/ansi.test: After merge fixes mysql-test/t/create.test: After merge fixes mysql-test/t/ctype_recoding.test: After merge fixes mysql-test/t/ctype_ujis.test: After merge fixes mysql-test/t/fulltext.test: After merge fixes mysql-test/t/innodb.test: After merge fixes mysql-test/t/join_outer.test: After merge fixes mysql-test/t/loaddata.test: After merge fixes mysql-test/t/order_by.test: After merge fixes mysql-test/t/rpl_flush_tables.test: After merge fixes mysql-test/t/status.test: After merge fixes mysql-test/t/subselect.test: After merge fixes sql/convert.cc: Code cleanup sql/field.cc: After merge fixes sql/filesort.cc: Remove compiler warning sql/item.cc: More efficient set_name() (no mallocs) sql/item_cmpfunc.cc: Code Code cleanup Item_bool_func2::fix_fields() added to get error handling right for cmp_charset sql/item_cmpfunc.h: New prototypes sql/item_func.cc: After merge fix sql/item_strfunc.cc: Faster check for BINARY sql/log_event.cc: Comment cleanup sql/mysql_priv.h: New prototypes and variables sql/mysqld.cc: Added initialization of all important global variables. Cleanup of variable declarations This is needed ot make the embedded version restartable sql/opt_sum.cc: After merge fix sql/set_var.cc: Code cleanup sql/sql_acl.cc: After merge fix Better error message sql/sql_db.cc: After merge fix sql/sql_derived.cc: After merge fix sql/sql_insert.cc: Indentation cleanups sql/sql_list.h: Added empty() to base_ilist sql/sql_parse.cc: After merge fix sql/sql_select.cc: After merge fix Fixed derived name handling in EXPLAIN sql/sql_show.cc: After merge fix sql/sql_string.cc: Made copy_and_convert global sql/sql_string.h: Made copy_and_convert global sql/sql_update.cc: After merge fix sql/sql_yacc.yy: After merge fix sql/thr_malloc.cc: Added sql_strmake_with_convert() sql/unireg.h: Added MAX_ALIAS_NAME strings/ctype-ujis.c: Fixed bug in converting to ujis
35 lines
1.3 KiB
Text
35 lines
1.3 KiB
Text
#
|
|
# Test of replicating FLUSH TABLES to make
|
|
# RENAME TABLE work with MERGE tables on the slave.
|
|
# Test of FLUSH NO_WRITE_TO_BINLOG by the way.
|
|
#
|
|
source include/master-slave.inc;
|
|
|
|
create table t1 (a int);
|
|
insert into t1 values (10);
|
|
create table t2 (a int);
|
|
create table t3 (a int) type=merge union(t1);
|
|
create table t4 (a int);
|
|
# We force the slave to open t3 (because we want to try confusing him) with this :
|
|
insert into t4 select * from t3;
|
|
rename table t1 to t5, t2 to t1;
|
|
# RENAME may have confused the master (this is a known bug): so FLUSH tables,
|
|
# first don't write it to the binlog, to test the NO_WRITE_TO_BINLOG keyword.
|
|
flush no_write_to_binlog tables;
|
|
# Check that it's not in the binlog.
|
|
--replace_result $SERVER_VERSION SERVER_VERSION
|
|
show binlog events;
|
|
# Check that the master is not confused.
|
|
select * from t3;
|
|
# This FLUSH should go into the binlog to not confuse the slave.
|
|
flush tables;
|
|
# Check that it's in the binlog.
|
|
--replace_result $SERVER_VERSION SERVER_VERSION
|
|
show binlog events;
|
|
save_master_pos;
|
|
connection slave;
|
|
sync_with_master;
|
|
# Check that the slave is not confused.
|
|
select * from t3;
|
|
# Note that all this confusion may cause warnings 'table xx is open on rename'
|
|
# in the .err files; these are not fatal and are not reported by mysql-test-run.
|