mirror of
https://github.com/MariaDB/server.git
synced 2025-08-31 22:22:30 +03:00
Some of the test cases reference to binlog position and these position numbers are written into result explicitly. It is difficult to maintain if log event format changes. There are a couple of cases explicit position number appears, we handle them in different ways A. 'CHANGE MASTER ...' with MASTER_LOG_POS or/and RELAY_LOG_POS options Use --replace_result to mask them. B. 'SHOW BINLOG EVENT ...' Replaced by show_binlog_events.inc or wait_for_binlog_event.inc. show_binlog_events.inc file's function is enhanced by given $binlog_file and $binlog_limit. C. 'SHOW SLAVE STATUS', 'show_slave_status.inc' and 'show_slave_status2.inc' For the test cases just care a few items in the result of 'SHOW SLAVE STATUS', only the items related to each test case are showed. 'show_slave_status.inc' is rebuild, only the given items in $status_items will be showed. 'check_slave_is_running.inc' and 'check_slave_no_error.inc' and 'check_slave_param.inc' are auxiliary files helping to show running status and error information easily. mysql-test/extra/binlog_tests/binlog.test: It only cares whether current binlog file index is changed, so it is ok with 'show_master_status.inc' instead of 'show mater status'. mysql-test/extra/binlog_tests/blackhole.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/extra/rpl_tests/rpl_deadlock.test: Use 'check_slave_is_running.inc' instead of 'show_slave_status2.inc'. mysql-test/extra/rpl_tests/rpl_extraMaster_Col.test: Use 'check_slave_is_running.inc' instead of 'show slave status' statement. mysql-test/extra/rpl_tests/rpl_extraSlave_Col.test: Use 'wait_for_slave_sql_error.inc' and 'ait_for_slave_sql_error_and_skip.inc' instead of 'show slave status'. mysql-test/extra/rpl_tests/rpl_flsh_tbls.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/extra/rpl_tests/rpl_get_master_version_and_clock.test: It is need now to give a error number, so use 'wait_for_slave_io_to_stop.inc' instead of 'wait_for_slave_io_error.inc'. mysql-test/extra/rpl_tests/rpl_insert_delayed.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/extra/rpl_tests/rpl_log.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. se 'check_slave_is_running.inc' instead of 'show slave status' statement. mysql-test/extra/rpl_tests/rpl_max_relay_size.test: se 'check_slave_is_running.inc' instead of 'show slave status' statement. mysql-test/extra/rpl_tests/rpl_ndb_apply_status.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/extra/rpl_tests/rpl_reset_slave.test: Use 'show_slave_status.inc' instead of 'show_slave_status2.inc' statement. Use 'check_slave_no_error.inc' to simplify the check that there is no error. mysql-test/extra/rpl_tests/rpl_row_basic.test: Use 'check_slave_is_running.inc' to verify that Slave threads are running well. Use 'wait_for_slave_sql_error.inc' to wait the given sql thread error happening. mysql-test/extra/rpl_tests/rpl_row_tabledefs.test: Use 'show_slave_error_status_and_skip.inc' instead of 'show slave status'. mysql-test/include/check_slave_is_running.inc: To make sure both sql and io thread are running well. If not, the test will be aborted. mysql-test/include/check_slave_no_error.inc: To make sure both sql and io thread have no error. If not, the test will be aborted. mysql-test/include/get_relay_log_pos.inc: According to the position of a log event in master binlog file, find the peer position of a log event in relay log file. mysql-test/include/rpl_stmt_seq.inc: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/include/show_binlog_events.inc: Add two options $binlog_file and $binlog_limit for showing binlog events from different binlog files or/and given different limits on position or row number. mysql-test/include/show_rpl_debug_info.inc: Add 'SELECT NOW()' in the debug information. mysql-test/include/show_slave_status.inc: It's more clean and tidy Only the given columns of slave status are printed. mysql-test/include/test_fieldsize.inc: Use 'wait_for_slave_sql_error.inc' to wait the given sql thread error happening. There is no need to print the result of 'show slave stutus'. mysql-test/include/wait_for_binlog_event.inc: Use show_rpl_debug_info.inc instead of 'SHOW BINLOG EVENTS'. mysql-test/include/wait_for_slave_io_error.inc: Add $slave_io_errno and $show_slave_io_error, it waits only a given error. mysql-test/include/wait_for_slave_param.inc: Use die instead of exit. mysql-test/include/wait_for_slave_sql_error.inc: Add $slave_sql_errno and $show_slave_sql_error, it waits only a given error. mysql-test/include/wait_for_status_var.inc: Use die instead of exit. mysql-test/r/flush_block_commit_notembedded.result: It checks whether somethings are binlogged, so we using 'show_binlog_event.inc' instead of 'show master status'. mysql-test/r/multi_update.result: It checks whether somethings are binlogged, so we using 'show_binlog_event.inc' instead of 'show master status'. mysql-test/suite/binlog/r/binlog_innodb.result: It checks whether somethings are binlogged, so we using 'show_binlog_event.inc' instead of 'show master status'. mysql-test/suite/binlog/r/binlog_row_binlog.result: Position in the result of 'show master status' is replaced by '#'. mysql-test/suite/binlog/r/binlog_stm_binlog.result: Position in the result of 'show master status' is replaced by '#'. mysql-test/suite/binlog/t/binlog_innodb.test: It checks whether somethings are binlogged, so we use 'show_binlog_event.inc' instead of 'show master status'. mysql-test/suite/binlog/t/binlog_stm_binlog.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/suite/bugs/r/rpl_bug36391.result: Position in the result of 'show master status' is replaced by '#'. mysql-test/suite/bugs/t/rpl_bug12691.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/suite/bugs/t/rpl_bug36391.test: 'show master status' is replaced by 'show_master_status.inc'. Position in the result of 'show master status' is replaced by '#'. mysql-test/suite/engines/funcs/r/rpl_000015.result: It checks whether somethings are binlogged, so we using 'show_binlog_event.inc' instead of 'show master status'. mysql-test/suite/engines/funcs/t/rpl_000015.test: Use 'check_slave_is_running.inc' to verify that Slave threads are running well. mysql-test/suite/engines/funcs/t/rpl_REDIRECT.test: Use 'query_vertical SHOW SLAVE STATUS' instead of 'show slave status'. There is no status columns in the result file, for no slave exists on master's server. mysql-test/suite/engines/funcs/t/rpl_change_master.test: This test just care whether Read_Master_Log_Pos is equal to Exec_Master_Log_Pos after 'CHANGE MASTER ..'. So 'show slave status' is removed and just check the value of Read_Master_Log_Pos and Exec_Master_Log_Pos. mysql-test/suite/engines/funcs/t/rpl_empty_master_crash.test: We doesn't really need the statement. mysql-test/suite/engines/funcs/t/rpl_flushlog_loop.test: Just show Relay_Log_File, running status and error informations. Use 'check_slave_is_running.inc' to verify that Slave threads are running well. mysql-test/suite/engines/funcs/t/rpl_loaddata_s.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/suite/engines/funcs/t/rpl_log_pos.test: Mask the explicit positions in the result file. Use 'check_slave_no_error.inc' to simplify the check that there is no error. Use 'wait_for_slave_sql_error.inc' to wait the given sql thread error happening. There is no need to print the result of 'show slave stutus'. mysql-test/suite/engines/funcs/t/rpl_rbr_to_sbr.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/suite/engines/funcs/t/rpl_row_drop.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/suite/engines/funcs/t/rpl_row_inexist_tbl.test: Use 'wait_for_slave_sql_error.inc' to wait the given sql thread error happening. There is no need to print the result of 'show slave stutus'. mysql-test/suite/engines/funcs/t/rpl_row_until.test: Use 'check_slave_param.inc' to check whether SQL Thread stop at a right position, and use binlog position variables instead of explicit number in the 'CHANGE MASTER' statements. Mask the explicit binary log positions in the result file. mysql-test/suite/engines/funcs/t/rpl_server_id1.test: Use 'wait_for_slave_sql_error.inc' to wait the given sql thread error happening. There is no need to print the result of 'show slave stutus'. Use 'check_slave_no_error.inc' to simplify the check that there is no error. mysql-test/suite/engines/funcs/t/rpl_server_id2.test: It doesn't really need in this test. mysql-test/suite/engines/funcs/t/rpl_slave_status.test: Use 'wait_for_slave_sql_error.inc' to wait the given sql thread error happening. There is no need to print the result of 'show slave stutus'. mysql-test/suite/engines/funcs/t/rpl_switch_stm_row_mixed.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/suite/manual/t/rpl_replication_delay.test: Use 'show_slave_status.inc' instead of 'show slave status'. mysql-test/suite/parts/t/rpl_partition.test: Use 'check_slave_is_running.inc' instead of 'show slave status' statement. mysql-test/suite/rpl/include/rpl_mixed_ddl.inc: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/suite/rpl/include/rpl_mixed_dml.inc: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/suite/rpl/t/rpl_000015.test: Use 'show_slave_status.inc' instead of 'show_slave_status2.inc'. mysql-test/suite/rpl/t/rpl_binlog_grant.test: Use 'wait_for_binlog_event.inc' instead of 'show binlog events' statement. mysql-test/suite/rpl/t/rpl_bug33931.test: Use 'wait_for_slave_sql_error.inc' to wait the given sql thread error happening. There is no need to print the result of 'show slave stutus'. mysql-test/suite/rpl/t/rpl_change_master.test: This test just care whether Read_Master_Log_Pos is equal to Exec_Master_Log_Pos after 'CHANGE MASTER ..'. So 'show slave status' is removed and just check the value of Read_Master_Log_Pos and Exec_Master_Log_Pos. mysql-test/suite/rpl/t/rpl_critical_errors.test: Use 'wait_for_slave_sql_error.inc' to wait the given sql thread error happening. There is no need to print the result of 'show slave stutus'. mysql-test/suite/rpl/t/rpl_dual_pos_advance.test: Mask the explicit position numbers in result file. It is restricted running on SBR, for it want to binlog 'set @a=1' statement. mysql-test/suite/rpl/t/rpl_empty_master_crash.test: It doesn't need in this test. mysql-test/suite/rpl/t/rpl_flushlog_loop.test: UUse 'check_slave_is_running.inc' and 'show_slave_status.inc' instead of 'show slave status' statement. mysql-test/suite/rpl/t/rpl_get_master_version_and_clock.test: Use 'wait_for_slave_io_error.inc' to wait the given io thread error happening. mysql-test/suite/rpl/t/rpl_grant.test: It doesn't need in this test. mysql-test/suite/rpl/t/rpl_incident.test: Use 'check_slave_is_running.inc' instead of 'show slave status' statement. mysql-test/suite/rpl/t/rpl_known_bugs_detection.test: Use 'wait_for_slave_sql_error.inc' to wait the given sql thread error happening. There is no need to print the result of 'show slave stutus'. mysql-test/suite/rpl/t/rpl_loaddata_fatal.test: Use 'wait_for_slave_sql_error_and_skip.inc' to wait the given sql thread error happening and then skip the event. There is no need to print the result of 'show slave stutus'. mysql-test/suite/rpl/t/rpl_log_pos.test: Use 'wait_for_slave_io_error.inc' to wait the given io thread error happening. There is no need to print the result of 'show slave status'. mysql-test/suite/rpl/t/rpl_rbr_to_sbr.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/suite/rpl/t/rpl_replicate_do.test: Use 'show_slave_status.inc' instead of 'show slave status'. mysql-test/suite/rpl/t/rpl_rotate_logs.test: Use 'show_slave_status.inc' instead of 'show_slave_status2.inc'. mysql-test/suite/rpl/t/rpl_row_basic_11bugs.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/suite/rpl/t/rpl_row_create_table.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/suite/rpl/t/rpl_row_drop.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/suite/rpl/t/rpl_row_until.test: Use 'check_slave_param.inc' to check whether SQL Thread stop at a right position, and use binlog position variables instead of explicit number in the 'CHANGE MASTER' statements. mysql-test/suite/rpl/t/rpl_skip_error.test: Use 'check_slave_is_running.inc' instead of 'show slave status' statement. mysql-test/suite/rpl/t/rpl_slave_load_remove_tmpfile.test: Use 'wait_for_slave_sql_error.inc' to wait the given sql thread error happening. There is no need to print the result of 'show slave status'. mysql-test/suite/rpl/t/rpl_slave_skip.test: Use 'check_slave_param.inc' to check whether SQL Thread stop at a right position, and mask the explicit position number in the 'CHANGE MASTER' statements. mysql-test/suite/rpl/t/rpl_sp.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/suite/rpl/t/rpl_ssl.test: Use 'show_slave_status.inc' instead of 'show slave status'. mysql-test/suite/rpl/t/rpl_ssl1.test: Use 'show_slave_status.inc' instead of 'show slave status'. mysql-test/suite/rpl/t/rpl_stm_until.test: Use 'check_slave_param.inc' to check whether SQL Thread stop at a right position, and use binlog position variables instead of explicit number in the 'CHANGE MASTER' statements. mysql-test/suite/rpl/t/rpl_temporary_errors.test: Use 'check_slave_is_running.inc' instead of 'show slave status' statement. mysql-test/suite/rpl_ndb/t/rpl_ndb_basic.test: Use 'wait_for_slave_sql_error.inc' to wait the given sql thread error happening. There is no need to print the result of 'show slave status'. mysql-test/suite/rpl_ndb/t/rpl_ndb_circular.test: Use 'check_slave_is_running.inc' instead of 'show slave status' statement. mysql-test/suite/rpl_ndb/t/rpl_ndb_circular_simplex.test: Use 'check_slave_is_running.inc' instead of 'show slave status' statement. mysql-test/suite/rpl_ndb/t/rpl_ndb_idempotent.test: Use 'check_slave_is_running.inc' instead of 'show slave status' statement. mysql-test/suite/rpl_ndb/t/rpl_ndb_multi.test: Mask master_log_pos and master_log_file mysql-test/suite/rpl_ndb/t/rpl_ndb_sync.test: Use 'check_slave_is_running.inc' instead of 'show slave status' statement. mysql-test/suite/rpl_ndb/t/rpl_truncate_7ndb.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/t/alter_table-big.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/t/create-big.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/t/ctype_cp932_binlog_stm.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement. mysql-test/t/flush_block_commit_notembedded.test: It checks whether somethings are binlogged, so we using 'show_binlog_event.inc' instead of 'show master status'. mysql-test/t/multi_update.test: It checks whether somethings are binlogged, so we using 'wait_binlog_event.inc' instead of 'show master status'. mysql-test/t/sp_trans_log.test: Use 'show_binlog_events.inc' instead of 'show binlog events' statement.
646 lines
14 KiB
Plaintext
646 lines
14 KiB
Plaintext
# row-based and statement have expected binlog difference in result files
|
|
|
|
# Test of replication of stored procedures (WL#2146 for MySQL 5.0)
|
|
# Modified by WL#2971.
|
|
|
|
# Note that in the .opt files we still use the old variable name
|
|
# log-bin-trust-routine-creators so that this test checks that it's
|
|
# still accepted (this test also checks that the new name is
|
|
# accepted). The old name could be removed in 5.1 or 6.0.
|
|
|
|
source include/have_binlog_format_mixed.inc;
|
|
source include/master-slave.inc;
|
|
|
|
|
|
# we need a db != test, where we don't have automatic grants
|
|
--disable_warnings
|
|
drop database if exists mysqltest1;
|
|
--enable_warnings
|
|
create database mysqltest1;
|
|
use mysqltest1;
|
|
create table t1 (a varchar(100));
|
|
sync_slave_with_master;
|
|
use mysqltest1;
|
|
|
|
# ********************** PART 1 : STORED PROCEDURES ***************
|
|
|
|
# Does the same proc as on master get inserted into mysql.proc ?
|
|
# (same definer, same properties...)
|
|
|
|
connection master;
|
|
|
|
delimiter |;
|
|
|
|
# Stored procedures don't have the limitations that functions have
|
|
# regarding binlogging: it's ok to create a procedure as not
|
|
# deterministic and updating data, while it's not ok to create such a
|
|
# function. We test this.
|
|
|
|
create procedure foo()
|
|
begin
|
|
declare b int;
|
|
set b = 8;
|
|
insert into t1 values (b);
|
|
insert into t1 values (unix_timestamp());
|
|
end|
|
|
delimiter ;|
|
|
|
|
# we replace columns having times
|
|
# (even with fixed timestamp displayed time may changed based on TZ)
|
|
--replace_result localhost.localdomain localhost 127.0.0.1 localhost
|
|
--replace_column 13 # 14 #
|
|
select * from mysql.proc where name='foo' and db='mysqltest1';
|
|
sync_slave_with_master;
|
|
# You will notice in the result that the definer does not match what
|
|
# it is on master, it is a known bug on which Alik is working
|
|
--replace_result localhost.localdomain localhost 127.0.0.1 localhost
|
|
--replace_column 13 # 14 #
|
|
select * from mysql.proc where name='foo' and db='mysqltest1';
|
|
|
|
connection master;
|
|
# see if timestamp used in SP on slave is same as on master
|
|
set timestamp=1000000000;
|
|
call foo();
|
|
select * from t1;
|
|
sync_slave_with_master;
|
|
select * from t1;
|
|
|
|
# Now a SP which is not updating tables
|
|
|
|
connection master;
|
|
delete from t1;
|
|
create procedure foo2()
|
|
select * from mysqltest1.t1;
|
|
call foo2();
|
|
|
|
# check that this is allowed (it's not for functions):
|
|
alter procedure foo2 contains sql;
|
|
|
|
# SP with definer's right
|
|
|
|
drop table t1;
|
|
create table t1 (a int);
|
|
create table t2 like t1;
|
|
|
|
create procedure foo3()
|
|
deterministic
|
|
insert into t1 values (15);
|
|
|
|
# let's create a non-privileged user
|
|
grant CREATE ROUTINE, EXECUTE on mysqltest1.* to "zedjzlcsjhd"@127.0.0.1;
|
|
grant SELECT on mysqltest1.t1 to "zedjzlcsjhd"@127.0.0.1;
|
|
grant SELECT, INSERT on mysqltest1.t2 to "zedjzlcsjhd"@127.0.0.1;
|
|
|
|
# ToDo: BUG#14931: There is a race between the last grant binlogging, and
|
|
# the binlogging in the new connection made below, causing sporadic test
|
|
# failures due to switched statement order in binlog. To fix this we do
|
|
# SELECT 1 in the first connection before starting the second, ensuring
|
|
# that binlogging is done in the expected order.
|
|
# Please remove this SELECT 1 when BUG#14931 is fixed.
|
|
SELECT 1;
|
|
|
|
connect (con1,127.0.0.1,zedjzlcsjhd,,mysqltest1,$MASTER_MYPORT,);
|
|
connection con1;
|
|
|
|
# this routine will fail in the second INSERT because of privileges
|
|
delimiter |;
|
|
create procedure foo4()
|
|
deterministic
|
|
begin
|
|
insert into t2 values(3);
|
|
insert into t1 values (5);
|
|
end|
|
|
|
|
delimiter ;|
|
|
|
|
# I add ,0 so that it does not print the error in the test output,
|
|
# because this error is hostname-dependent
|
|
--error 1142,0
|
|
call foo4(); # invoker has no INSERT grant on table t1 => failure
|
|
|
|
connection master;
|
|
call foo3(); # success (definer == root)
|
|
show warnings;
|
|
|
|
--error 1142,0
|
|
call foo4(); # definer's rights => failure
|
|
|
|
# we test replication of ALTER PROCEDURE
|
|
alter procedure foo4 sql security invoker;
|
|
call foo4(); # invoker's rights => success
|
|
show warnings;
|
|
|
|
# Note that half-failed procedure calls are ok with binlogging;
|
|
# if we compare t2 on master and slave we see they are identical:
|
|
|
|
select * from t1;
|
|
select * from t2;
|
|
sync_slave_with_master;
|
|
select * from t1;
|
|
select * from t2;
|
|
|
|
# Let's check another failing-in-the-middle procedure
|
|
connection master;
|
|
delete from t2;
|
|
alter table t2 add unique (a);
|
|
|
|
drop procedure foo4;
|
|
delimiter |;
|
|
create procedure foo4()
|
|
deterministic
|
|
begin
|
|
insert into t2 values(20),(20);
|
|
end|
|
|
|
|
delimiter ;|
|
|
|
|
--error ER_DUP_ENTRY
|
|
call foo4();
|
|
show warnings;
|
|
|
|
select * from t2;
|
|
sync_slave_with_master;
|
|
# check that this failed-in-the-middle replicated right:
|
|
select * from t2;
|
|
|
|
# Test of DROP PROCEDURE
|
|
|
|
--replace_result localhost.localdomain localhost 127.0.0.1 localhost
|
|
--replace_column 13 # 14 #
|
|
select * from mysql.proc where name="foo4" and db='mysqltest1';
|
|
connection master;
|
|
drop procedure foo4;
|
|
select * from mysql.proc where name="foo4" and db='mysqltest1';
|
|
sync_slave_with_master;
|
|
select * from mysql.proc where name="foo4" and db='mysqltest1';
|
|
|
|
# ********************** PART 2 : FUNCTIONS ***************
|
|
|
|
connection master;
|
|
drop procedure foo;
|
|
drop procedure foo2;
|
|
drop procedure foo3;
|
|
|
|
delimiter |;
|
|
# check that needs "deterministic"
|
|
--error 1418
|
|
create function fn1(x int)
|
|
returns int
|
|
begin
|
|
insert into t1 values (x);
|
|
return x+2;
|
|
end|
|
|
create function fn1(x int)
|
|
returns int
|
|
deterministic
|
|
begin
|
|
insert into t1 values (x);
|
|
return x+2;
|
|
end|
|
|
|
|
delimiter ;|
|
|
delete t1,t2 from t1,t2;
|
|
select fn1(20);
|
|
insert into t2 values(fn1(21));
|
|
select * from t1;
|
|
select * from t2;
|
|
sync_slave_with_master;
|
|
select * from t1;
|
|
select * from t2;
|
|
|
|
connection master;
|
|
delimiter |;
|
|
|
|
drop function fn1;
|
|
|
|
create function fn1()
|
|
returns int
|
|
no sql
|
|
begin
|
|
return unix_timestamp();
|
|
end|
|
|
|
|
delimiter ;|
|
|
# check that needs "deterministic"
|
|
--error 1418
|
|
alter function fn1 contains sql;
|
|
|
|
delete from t1;
|
|
set timestamp=1000000000;
|
|
insert into t1 values(fn1());
|
|
|
|
connection con1;
|
|
|
|
delimiter |;
|
|
--error 1419 # only full-global-privs user can create a function
|
|
create function fn2()
|
|
returns int
|
|
no sql
|
|
begin
|
|
return unix_timestamp();
|
|
end|
|
|
delimiter ;|
|
|
connection master;
|
|
set @old_log_bin_trust_routine_creators= @@global.log_bin_trust_routine_creators;
|
|
set @old_log_bin_trust_function_creators= @@global.log_bin_trust_function_creators;
|
|
# test old variable name:
|
|
set global log_bin_trust_routine_creators=1;
|
|
# now use new name:
|
|
set global log_bin_trust_function_creators=0;
|
|
set global log_bin_trust_function_creators=1;
|
|
# slave needs it too otherwise will not execute what master allowed:
|
|
connection slave;
|
|
set @old_log_bin_trust_routine_creators= @@global.log_bin_trust_routine_creators;
|
|
set @old_log_bin_trust_function_creators= @@global.log_bin_trust_function_creators;
|
|
set global log_bin_trust_function_creators=1;
|
|
|
|
connection con1;
|
|
|
|
delimiter |;
|
|
create function fn2()
|
|
returns int
|
|
no sql
|
|
begin
|
|
return unix_timestamp();
|
|
end|
|
|
delimiter ;|
|
|
|
|
connection master;
|
|
|
|
# Now a function which is supposed to not update tables
|
|
# as it's "reads sql data", so should not give error even if
|
|
# non-deterministic.
|
|
|
|
delimiter |;
|
|
create function fn3()
|
|
returns int
|
|
not deterministic
|
|
reads sql data
|
|
begin
|
|
return 0;
|
|
end|
|
|
delimiter ;|
|
|
|
|
select fn3();
|
|
--replace_result localhost.localdomain localhost 127.0.0.1 localhost
|
|
--replace_column 13 # 14 #
|
|
select * from mysql.proc where db='mysqltest1';
|
|
select * from t1;
|
|
|
|
sync_slave_with_master;
|
|
use mysqltest1;
|
|
select * from t1;
|
|
--replace_result localhost.localdomain localhost 127.0.0.1 localhost
|
|
--replace_column 13 # 14 #
|
|
select * from mysql.proc where db='mysqltest1';
|
|
|
|
# Let's check a failing-in-the-middle function
|
|
connection master;
|
|
delete from t2;
|
|
alter table t2 add unique (a);
|
|
|
|
drop function fn1;
|
|
|
|
delimiter |;
|
|
create function fn1(x int)
|
|
returns int
|
|
begin
|
|
insert into t2 values(x),(x);
|
|
return 10;
|
|
end|
|
|
|
|
delimiter ;|
|
|
|
|
do fn1(100);
|
|
|
|
--error ER_DUP_ENTRY
|
|
select fn1(20);
|
|
|
|
select * from t2;
|
|
sync_slave_with_master;
|
|
|
|
# check that this failed-in-the-middle replicated right:
|
|
select * from t2;
|
|
|
|
# ********************** PART 3 : TRIGGERS ***************
|
|
|
|
connection con1;
|
|
# now fails due to missing trigger grant (err 1142 i/o 1227) due to new
|
|
# check in sql_trigger.cc (v1.44) by anozdrin on 2006/02/01 --azundris
|
|
--error ER_TABLEACCESS_DENIED_ERROR
|
|
create trigger trg before insert on t1 for each row set new.a= 10;
|
|
|
|
connection master;
|
|
delete from t1;
|
|
# TODO: when triggers can contain an update, test that this update
|
|
# does not go into binlog.
|
|
# I'm not setting user vars in the trigger, because replication of user vars
|
|
# would take care of propagating the user var's value to slave, so even if
|
|
# the trigger was not executed on slave it would not be discovered.
|
|
create trigger trg before insert on t1 for each row set new.a= 10;
|
|
insert into t1 values (1);
|
|
select * from t1;
|
|
sync_slave_with_master;
|
|
select * from t1;
|
|
|
|
connection master;
|
|
delete from t1;
|
|
drop trigger trg;
|
|
insert into t1 values (1);
|
|
select * from t1;
|
|
sync_slave_with_master;
|
|
select * from t1;
|
|
|
|
|
|
# ********************** PART 4 : RELATED FIXED BUGS ***************
|
|
|
|
|
|
#
|
|
# Test for bug #13969 "Routines which are replicated from master can't be
|
|
# executed on slave".
|
|
#
|
|
connection master;
|
|
create procedure foo()
|
|
not deterministic
|
|
reads sql data
|
|
select * from t1;
|
|
sync_slave_with_master;
|
|
# This should not fail
|
|
call foo();
|
|
connection master;
|
|
drop procedure foo;
|
|
sync_slave_with_master;
|
|
|
|
|
|
# Clean up
|
|
connection master;
|
|
drop function fn1;
|
|
drop database mysqltest1;
|
|
drop user "zedjzlcsjhd"@127.0.0.1;
|
|
use test;
|
|
sync_slave_with_master;
|
|
use test;
|
|
|
|
#
|
|
# Bug#14077 "Failure to replicate a stored function with a cursor":
|
|
# verify that stored routines with cursors work on slave.
|
|
#
|
|
connection master;
|
|
--disable_warnings
|
|
drop function if exists f1;
|
|
--enable_warnings
|
|
delimiter |;
|
|
create function f1() returns int reads sql data
|
|
begin
|
|
declare var integer;
|
|
declare c cursor for select a from v1;
|
|
open c;
|
|
fetch c into var;
|
|
close c;
|
|
return var;
|
|
end|
|
|
delimiter ;|
|
|
create view v1 as select 1 as a;
|
|
create table t1 (a int);
|
|
insert into t1 (a) values (f1());
|
|
select * from t1;
|
|
drop view v1;
|
|
drop function f1;
|
|
sync_slave_with_master;
|
|
connection slave;
|
|
select * from t1;
|
|
|
|
#
|
|
# Bug#16621 "INSERTs in Stored Procedures causes data corruption in the Binary
|
|
# Log for 5.0.18"
|
|
#
|
|
|
|
# Prepare environment.
|
|
|
|
connection master;
|
|
|
|
--disable_warnings
|
|
DROP PROCEDURE IF EXISTS p1;
|
|
DROP TABLE IF EXISTS t1;
|
|
--enable_warnings
|
|
|
|
# Test case.
|
|
|
|
CREATE TABLE t1(col VARCHAR(10));
|
|
|
|
CREATE PROCEDURE p1(arg VARCHAR(10))
|
|
INSERT INTO t1 VALUES(arg);
|
|
|
|
CALL p1('test');
|
|
|
|
SELECT * FROM t1;
|
|
|
|
sync_slave_with_master;
|
|
SELECT * FROM t1;
|
|
|
|
# Cleanup
|
|
connection master;
|
|
DROP PROCEDURE p1;
|
|
|
|
|
|
#
|
|
# BUG#20438: CREATE statements for views, stored routines and triggers can be
|
|
# not replicable.
|
|
#
|
|
|
|
--echo
|
|
--echo ---> Test for BUG#20438
|
|
|
|
# Prepare environment.
|
|
|
|
--echo
|
|
--echo ---> Preparing environment...
|
|
--echo ---> connection: master
|
|
--connection master
|
|
|
|
--disable_warnings
|
|
DROP PROCEDURE IF EXISTS p1;
|
|
DROP FUNCTION IF EXISTS f1;
|
|
--enable_warnings
|
|
|
|
--echo
|
|
--echo ---> Synchronizing slave with master...
|
|
|
|
--save_master_pos
|
|
--connection slave
|
|
--sync_with_master
|
|
|
|
--echo
|
|
--echo ---> connection: master
|
|
--connection master
|
|
|
|
# Test.
|
|
|
|
--echo
|
|
--echo ---> Creating procedure...
|
|
|
|
/*!50003 CREATE PROCEDURE p1() SET @a = 1 */;
|
|
|
|
/*!50003 CREATE FUNCTION f1() RETURNS INT RETURN 0 */;
|
|
|
|
--echo
|
|
--echo ---> Checking on master...
|
|
|
|
SHOW CREATE PROCEDURE p1;
|
|
SHOW CREATE FUNCTION f1;
|
|
|
|
--echo
|
|
--echo ---> Synchronizing slave with master...
|
|
|
|
--save_master_pos
|
|
--connection slave
|
|
--sync_with_master
|
|
|
|
--echo ---> connection: master
|
|
|
|
--echo
|
|
--echo ---> Checking on slave...
|
|
|
|
SHOW CREATE PROCEDURE p1;
|
|
SHOW CREATE FUNCTION f1;
|
|
|
|
# Cleanup.
|
|
|
|
--echo
|
|
--echo ---> connection: master
|
|
--connection master
|
|
|
|
--echo
|
|
--echo ---> Cleaning up...
|
|
|
|
DROP PROCEDURE p1;
|
|
DROP FUNCTION f1;
|
|
|
|
--save_master_pos
|
|
--connection slave
|
|
--sync_with_master
|
|
--connection master
|
|
|
|
|
|
# cleanup
|
|
connection master;
|
|
drop table t1;
|
|
sync_slave_with_master;
|
|
|
|
#
|
|
# Bug22043: MySQL don't add "USE <DATABASE>" before "DROP PROCEDURE IF EXISTS"
|
|
#
|
|
|
|
connection master;
|
|
--disable_warnings
|
|
drop database if exists mysqltest;
|
|
drop database if exists mysqltest2;
|
|
--enable_warnings
|
|
create database mysqltest;
|
|
create database mysqltest2;
|
|
use mysqltest2;
|
|
create table t ( t integer );
|
|
create procedure mysqltest.test() begin end;
|
|
insert into t values ( 1 );
|
|
--error ER_BAD_DB_ERROR
|
|
create procedure `\\`.test() begin end;
|
|
|
|
#
|
|
# BUG#19725: Calls to stored function in other database are not
|
|
# replicated correctly in some cases
|
|
#
|
|
|
|
connection master;
|
|
delimiter |;
|
|
create function f1 () returns int
|
|
begin
|
|
insert into t values (1);
|
|
return 0;
|
|
end|
|
|
delimiter ;|
|
|
sync_slave_with_master;
|
|
# Let us test if we don't forget to binlog the function's database
|
|
connection master;
|
|
use mysqltest;
|
|
set @a:= mysqltest2.f1();
|
|
sync_slave_with_master;
|
|
connection master;
|
|
|
|
# Final inspection which verifies how all statements of this test file
|
|
# were written to the binary log.
|
|
--source include/show_binlog_events.inc
|
|
|
|
|
|
# Restore log_bin_trust_function_creators to its original value.
|
|
# This is a cleanup for all parts above where we tested stored
|
|
# functions and triggers.
|
|
connection slave;
|
|
set @@global.log_bin_trust_routine_creators= @old_log_bin_trust_routine_creators;
|
|
set @@global.log_bin_trust_function_creators= @old_log_bin_trust_function_creators;
|
|
connection master;
|
|
set @@global.log_bin_trust_routine_creators= @old_log_bin_trust_routine_creators;
|
|
set @@global.log_bin_trust_function_creators= @old_log_bin_trust_function_creators;
|
|
|
|
# Clean up
|
|
drop database mysqltest;
|
|
drop database mysqltest2;
|
|
sync_slave_with_master;
|
|
|
|
#
|
|
# Bug#36570: Parse error of CREATE PROCEDURE stmt with comments on slave
|
|
#
|
|
connection master;
|
|
use test;
|
|
delimiter |;
|
|
|
|
/*!50001 create procedure `mysqltestbug36570_p1`() */
|
|
begin
|
|
select 1;
|
|
end|
|
|
|
|
use mysql|
|
|
create procedure test.` mysqltestbug36570_p2`(/*!50001 a int*/)`label`:
|
|
begin
|
|
select a;
|
|
end|
|
|
|
|
/*!50001 create function test.mysqltestbug36570_f1() */
|
|
returns int
|
|
/*!50001 deterministic */
|
|
begin
|
|
return 3;
|
|
end|
|
|
use test|
|
|
|
|
delimiter ;|
|
|
|
|
--replace_column 5 t 6 t
|
|
show procedure status like '%mysqltestbug36570%';
|
|
show create procedure ` mysqltestbug36570_p2`;
|
|
|
|
sync_slave_with_master;
|
|
connection slave;
|
|
|
|
--replace_column 5 t 6 t
|
|
show procedure status like '%mysqltestbug36570%';
|
|
show create procedure ` mysqltestbug36570_p2`;
|
|
call ` mysqltestbug36570_p2`(42);
|
|
|
|
--replace_column 5 t 6 t
|
|
show function status like '%mysqltestbug36570%';
|
|
|
|
connection master;
|
|
flush logs;
|
|
let $MYSQLD_DATADIR= `select @@datadir`;
|
|
--replace_regex s/$MYSQL_TEST_DIR/MYSQL_TEST_DIR/ s/TIMESTAMP=[0-9]*/TIMESTAMP=t/
|
|
--exec $MYSQL_BINLOG --short-form $MYSQLD_DATADIR/master-bin.000001
|
|
use test;
|
|
drop procedure mysqltestbug36570_p1;
|
|
drop procedure ` mysqltestbug36570_p2`;
|
|
drop function mysqltestbug36570_f1;
|
|
--echo End of 5.0 tests
|
|
--echo End of 5.1 tests
|
|
|
|
# Cleanup
|
|
sync_slave_with_master;
|