mirror of
https://github.com/MariaDB/server.git
synced 2025-01-31 19:11:46 +01:00
7e80f1c5dc
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.
991 lines
30 KiB
Text
991 lines
30 KiB
Text
stop slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
reset master;
|
|
reset slave;
|
|
drop table if exists t1,t2,t3,t4,t5,t6,t7,t8,t9;
|
|
start slave;
|
|
drop database if exists mysqltest1;
|
|
create database mysqltest1;
|
|
use mysqltest1;
|
|
create table t1 (a varchar(100));
|
|
use mysqltest1;
|
|
create procedure foo()
|
|
begin
|
|
declare b int;
|
|
set b = 8;
|
|
insert into t1 values (b);
|
|
insert into t1 values (unix_timestamp());
|
|
end|
|
|
select * from mysql.proc where name='foo' and db='mysqltest1';
|
|
db name type specific_name language sql_data_access is_deterministic security_type param_list returns body definer created modified sql_mode comment character_set_client collation_connection db_collation body_utf8
|
|
mysqltest1 foo PROCEDURE foo SQL CONTAINS_SQL NO DEFINER begin
|
|
declare b int;
|
|
set b = 8;
|
|
insert into t1 values (b);
|
|
insert into t1 values (unix_timestamp());
|
|
end root@localhost # # latin1 latin1_swedish_ci latin1_swedish_ci begin
|
|
declare b int;
|
|
set b = 8;
|
|
insert into t1 values (b);
|
|
insert into t1 values (unix_timestamp());
|
|
end
|
|
select * from mysql.proc where name='foo' and db='mysqltest1';
|
|
db name type specific_name language sql_data_access is_deterministic security_type param_list returns body definer created modified sql_mode comment character_set_client collation_connection db_collation body_utf8
|
|
mysqltest1 foo PROCEDURE foo SQL CONTAINS_SQL NO DEFINER begin
|
|
declare b int;
|
|
set b = 8;
|
|
insert into t1 values (b);
|
|
insert into t1 values (unix_timestamp());
|
|
end root@localhost # # latin1 latin1_swedish_ci latin1_swedish_ci begin
|
|
declare b int;
|
|
set b = 8;
|
|
insert into t1 values (b);
|
|
insert into t1 values (unix_timestamp());
|
|
end
|
|
set timestamp=1000000000;
|
|
call foo();
|
|
select * from t1;
|
|
a
|
|
8
|
|
1000000000
|
|
select * from t1;
|
|
a
|
|
8
|
|
1000000000
|
|
delete from t1;
|
|
create procedure foo2()
|
|
select * from mysqltest1.t1;
|
|
call foo2();
|
|
a
|
|
alter procedure foo2 contains sql;
|
|
drop table t1;
|
|
create table t1 (a int);
|
|
create table t2 like t1;
|
|
create procedure foo3()
|
|
deterministic
|
|
insert into t1 values (15);
|
|
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;
|
|
SELECT 1;
|
|
1
|
|
1
|
|
create procedure foo4()
|
|
deterministic
|
|
begin
|
|
insert into t2 values(3);
|
|
insert into t1 values (5);
|
|
end|
|
|
call foo4();
|
|
Got one of the listed errors
|
|
call foo3();
|
|
show warnings;
|
|
Level Code Message
|
|
call foo4();
|
|
Got one of the listed errors
|
|
alter procedure foo4 sql security invoker;
|
|
call foo4();
|
|
show warnings;
|
|
Level Code Message
|
|
select * from t1;
|
|
a
|
|
15
|
|
5
|
|
select * from t2;
|
|
a
|
|
3
|
|
3
|
|
3
|
|
select * from t1;
|
|
a
|
|
15
|
|
5
|
|
select * from t2;
|
|
a
|
|
3
|
|
3
|
|
3
|
|
delete from t2;
|
|
alter table t2 add unique (a);
|
|
drop procedure foo4;
|
|
create procedure foo4()
|
|
deterministic
|
|
begin
|
|
insert into t2 values(20),(20);
|
|
end|
|
|
call foo4();
|
|
ERROR 23000: Duplicate entry '20' for key 'a'
|
|
show warnings;
|
|
Level Code Message
|
|
Error 1062 Duplicate entry '20' for key 'a'
|
|
select * from t2;
|
|
a
|
|
20
|
|
select * from t2;
|
|
a
|
|
20
|
|
select * from mysql.proc where name="foo4" and db='mysqltest1';
|
|
db name type specific_name language sql_data_access is_deterministic security_type param_list returns body definer created modified sql_mode comment character_set_client collation_connection db_collation body_utf8
|
|
mysqltest1 foo4 PROCEDURE foo4 SQL CONTAINS_SQL YES DEFINER begin
|
|
insert into t2 values(20),(20);
|
|
end root@localhost # # latin1 latin1_swedish_ci latin1_swedish_ci begin
|
|
insert into t2 values(20),(20);
|
|
end
|
|
drop procedure foo4;
|
|
select * from mysql.proc where name="foo4" and db='mysqltest1';
|
|
db name type specific_name language sql_data_access is_deterministic security_type param_list returns body definer created modified sql_mode comment character_set_client collation_connection db_collation body_utf8
|
|
select * from mysql.proc where name="foo4" and db='mysqltest1';
|
|
db name type specific_name language sql_data_access is_deterministic security_type param_list returns body definer created modified sql_mode comment character_set_client collation_connection db_collation body_utf8
|
|
drop procedure foo;
|
|
drop procedure foo2;
|
|
drop procedure foo3;
|
|
create function fn1(x int)
|
|
returns int
|
|
begin
|
|
insert into t1 values (x);
|
|
return x+2;
|
|
end|
|
|
ERROR HY000: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
|
|
create function fn1(x int)
|
|
returns int
|
|
deterministic
|
|
begin
|
|
insert into t1 values (x);
|
|
return x+2;
|
|
end|
|
|
delete t1,t2 from t1,t2;
|
|
select fn1(20);
|
|
fn1(20)
|
|
22
|
|
insert into t2 values(fn1(21));
|
|
select * from t1;
|
|
a
|
|
21
|
|
20
|
|
select * from t2;
|
|
a
|
|
23
|
|
select * from t1;
|
|
a
|
|
21
|
|
20
|
|
select * from t2;
|
|
a
|
|
23
|
|
drop function fn1;
|
|
create function fn1()
|
|
returns int
|
|
no sql
|
|
begin
|
|
return unix_timestamp();
|
|
end|
|
|
alter function fn1 contains sql;
|
|
ERROR HY000: This function has none of DETERMINISTIC, NO SQL, or READS SQL DATA in its declaration and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
|
|
delete from t1;
|
|
set timestamp=1000000000;
|
|
insert into t1 values(fn1());
|
|
create function fn2()
|
|
returns int
|
|
no sql
|
|
begin
|
|
return unix_timestamp();
|
|
end|
|
|
ERROR HY000: You do not have the SUPER privilege and binary logging is enabled (you *might* want to use the less safe log_bin_trust_function_creators variable)
|
|
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_routine_creators=1;
|
|
Warnings:
|
|
Warning 1287 '@@log_bin_trust_routine_creators' is deprecated and will be removed in a future release. Please use '@@log_bin_trust_function_creators' instead
|
|
set global log_bin_trust_function_creators=0;
|
|
set global log_bin_trust_function_creators=1;
|
|
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;
|
|
create function fn2()
|
|
returns int
|
|
no sql
|
|
begin
|
|
return unix_timestamp();
|
|
end|
|
|
create function fn3()
|
|
returns int
|
|
not deterministic
|
|
reads sql data
|
|
begin
|
|
return 0;
|
|
end|
|
|
select fn3();
|
|
fn3()
|
|
0
|
|
select * from mysql.proc where db='mysqltest1';
|
|
db name type specific_name language sql_data_access is_deterministic security_type param_list returns body definer created modified sql_mode comment character_set_client collation_connection db_collation body_utf8
|
|
mysqltest1 fn1 FUNCTION fn1 SQL NO_SQL NO DEFINER int(11) begin
|
|
return unix_timestamp();
|
|
end root@localhost # # latin1 latin1_swedish_ci latin1_swedish_ci begin
|
|
return unix_timestamp();
|
|
end
|
|
mysqltest1 fn2 FUNCTION fn2 SQL NO_SQL NO DEFINER int(11) begin
|
|
return unix_timestamp();
|
|
end zedjzlcsjhd@localhost # # latin1 latin1_swedish_ci latin1_swedish_ci begin
|
|
return unix_timestamp();
|
|
end
|
|
mysqltest1 fn3 FUNCTION fn3 SQL READS_SQL_DATA NO DEFINER int(11) begin
|
|
return 0;
|
|
end root@localhost # # latin1 latin1_swedish_ci latin1_swedish_ci begin
|
|
return 0;
|
|
end
|
|
select * from t1;
|
|
a
|
|
1000000000
|
|
use mysqltest1;
|
|
select * from t1;
|
|
a
|
|
1000000000
|
|
select * from mysql.proc where db='mysqltest1';
|
|
db name type specific_name language sql_data_access is_deterministic security_type param_list returns body definer created modified sql_mode comment character_set_client collation_connection db_collation body_utf8
|
|
mysqltest1 fn1 FUNCTION fn1 SQL NO_SQL NO DEFINER int(11) begin
|
|
return unix_timestamp();
|
|
end root@localhost # # latin1 latin1_swedish_ci latin1_swedish_ci begin
|
|
return unix_timestamp();
|
|
end
|
|
mysqltest1 fn2 FUNCTION fn2 SQL NO_SQL NO DEFINER int(11) begin
|
|
return unix_timestamp();
|
|
end zedjzlcsjhd@localhost # # latin1 latin1_swedish_ci latin1_swedish_ci begin
|
|
return unix_timestamp();
|
|
end
|
|
mysqltest1 fn3 FUNCTION fn3 SQL READS_SQL_DATA NO DEFINER int(11) begin
|
|
return 0;
|
|
end root@localhost # # latin1 latin1_swedish_ci latin1_swedish_ci begin
|
|
return 0;
|
|
end
|
|
delete from t2;
|
|
alter table t2 add unique (a);
|
|
drop function fn1;
|
|
create function fn1(x int)
|
|
returns int
|
|
begin
|
|
insert into t2 values(x),(x);
|
|
return 10;
|
|
end|
|
|
do fn1(100);
|
|
Warnings:
|
|
Error 1062 Duplicate entry '100' for key 'a'
|
|
select fn1(20);
|
|
ERROR 23000: Duplicate entry '20' for key 'a'
|
|
select * from t2;
|
|
a
|
|
20
|
|
100
|
|
select * from t2;
|
|
a
|
|
20
|
|
100
|
|
create trigger trg before insert on t1 for each row set new.a= 10;
|
|
ERROR 42000: TRIGGER command denied to user 'zedjzlcsjhd'@'localhost' for table 't1'
|
|
delete from t1;
|
|
create trigger trg before insert on t1 for each row set new.a= 10;
|
|
insert into t1 values (1);
|
|
select * from t1;
|
|
a
|
|
10
|
|
select * from t1;
|
|
a
|
|
10
|
|
delete from t1;
|
|
drop trigger trg;
|
|
insert into t1 values (1);
|
|
select * from t1;
|
|
a
|
|
1
|
|
select * from t1;
|
|
a
|
|
1
|
|
create procedure foo()
|
|
not deterministic
|
|
reads sql data
|
|
select * from t1;
|
|
call foo();
|
|
a
|
|
1
|
|
drop procedure foo;
|
|
drop function fn1;
|
|
drop database mysqltest1;
|
|
drop user "zedjzlcsjhd"@127.0.0.1;
|
|
use test;
|
|
use test;
|
|
drop function if exists f1;
|
|
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|
|
|
create view v1 as select 1 as a;
|
|
create table t1 (a int);
|
|
insert into t1 (a) values (f1());
|
|
select * from t1;
|
|
a
|
|
1
|
|
drop view v1;
|
|
drop function f1;
|
|
select * from t1;
|
|
a
|
|
1
|
|
DROP PROCEDURE IF EXISTS p1;
|
|
DROP TABLE IF EXISTS t1;
|
|
CREATE TABLE t1(col VARCHAR(10));
|
|
CREATE PROCEDURE p1(arg VARCHAR(10))
|
|
INSERT INTO t1 VALUES(arg);
|
|
CALL p1('test');
|
|
SELECT * FROM t1;
|
|
col
|
|
test
|
|
SELECT * FROM t1;
|
|
col
|
|
test
|
|
DROP PROCEDURE p1;
|
|
|
|
---> Test for BUG#20438
|
|
|
|
---> Preparing environment...
|
|
---> connection: master
|
|
DROP PROCEDURE IF EXISTS p1;
|
|
DROP FUNCTION IF EXISTS f1;
|
|
|
|
---> Synchronizing slave with master...
|
|
|
|
---> connection: master
|
|
|
|
---> Creating procedure...
|
|
/*!50003 CREATE PROCEDURE p1() SET @a = 1 */;
|
|
/*!50003 CREATE FUNCTION f1() RETURNS INT RETURN 0 */;
|
|
|
|
---> Checking on master...
|
|
SHOW CREATE PROCEDURE p1;
|
|
Procedure sql_mode Create Procedure character_set_client collation_connection Database Collation
|
|
p1 CREATE DEFINER=`root`@`localhost` PROCEDURE `p1`()
|
|
SET @a = 1 latin1 latin1_swedish_ci latin1_swedish_ci
|
|
SHOW CREATE FUNCTION f1;
|
|
Function sql_mode Create Function character_set_client collation_connection Database Collation
|
|
f1 CREATE DEFINER=`root`@`localhost` FUNCTION `f1`() RETURNS int(11)
|
|
RETURN 0 latin1 latin1_swedish_ci latin1_swedish_ci
|
|
|
|
---> Synchronizing slave with master...
|
|
---> connection: master
|
|
|
|
---> Checking on slave...
|
|
SHOW CREATE PROCEDURE p1;
|
|
Procedure sql_mode Create Procedure character_set_client collation_connection Database Collation
|
|
p1 CREATE DEFINER=`root`@`localhost` PROCEDURE `p1`()
|
|
SET @a = 1 latin1 latin1_swedish_ci latin1_swedish_ci
|
|
SHOW CREATE FUNCTION f1;
|
|
Function sql_mode Create Function character_set_client collation_connection Database Collation
|
|
f1 CREATE DEFINER=`root`@`localhost` FUNCTION `f1`() RETURNS int(11)
|
|
RETURN 0 latin1 latin1_swedish_ci latin1_swedish_ci
|
|
|
|
---> connection: master
|
|
|
|
---> Cleaning up...
|
|
DROP PROCEDURE p1;
|
|
DROP FUNCTION f1;
|
|
drop table t1;
|
|
drop database if exists mysqltest;
|
|
drop database if exists mysqltest2;
|
|
create database mysqltest;
|
|
create database mysqltest2;
|
|
use mysqltest2;
|
|
create table t ( t integer );
|
|
create procedure mysqltest.test() begin end;
|
|
insert into t values ( 1 );
|
|
create procedure `\\`.test() begin end;
|
|
ERROR 42000: Unknown database '\\'
|
|
create function f1 () returns int
|
|
begin
|
|
insert into t values (1);
|
|
return 0;
|
|
end|
|
|
use mysqltest;
|
|
set @a:= mysqltest2.f1();
|
|
show binlog events from <binlog_start>;
|
|
Log_name Pos Event_type Server_id End_log_pos Info
|
|
master-bin.000001 # Query # # drop database if exists mysqltest1
|
|
master-bin.000001 # Query # # create database mysqltest1
|
|
master-bin.000001 # Query # # use `mysqltest1`; create table t1 (a varchar(100))
|
|
master-bin.000001 # Query # # use `mysqltest1`; CREATE DEFINER=`root`@`localhost` PROCEDURE `foo`()
|
|
begin
|
|
declare b int;
|
|
set b = 8;
|
|
insert into t1 values (b);
|
|
insert into t1 values (unix_timestamp());
|
|
end
|
|
master-bin.000001 # Query # # use `mysqltest1`; insert into t1 values ( NAME_CONST('b',8))
|
|
master-bin.000001 # Query # # use `mysqltest1`; insert into t1 values (unix_timestamp())
|
|
master-bin.000001 # Query # # use `mysqltest1`; delete from t1
|
|
master-bin.000001 # Query # # use `mysqltest1`; CREATE DEFINER=`root`@`localhost` PROCEDURE `foo2`()
|
|
select * from mysqltest1.t1
|
|
master-bin.000001 # Query # # use `mysqltest1`; alter procedure foo2 contains sql
|
|
master-bin.000001 # Query # # use `mysqltest1`; drop table t1
|
|
master-bin.000001 # Query # # use `mysqltest1`; create table t1 (a int)
|
|
master-bin.000001 # Query # # use `mysqltest1`; create table t2 like t1
|
|
master-bin.000001 # Query # # use `mysqltest1`; CREATE DEFINER=`root`@`localhost` PROCEDURE `foo3`()
|
|
DETERMINISTIC
|
|
insert into t1 values (15)
|
|
master-bin.000001 # Query # # use `mysqltest1`; grant CREATE ROUTINE, EXECUTE on mysqltest1.* to "zedjzlcsjhd"@127.0.0.1
|
|
master-bin.000001 # Query # # use `mysqltest1`; grant SELECT on mysqltest1.t1 to "zedjzlcsjhd"@127.0.0.1
|
|
master-bin.000001 # Query # # use `mysqltest1`; grant SELECT, INSERT on mysqltest1.t2 to "zedjzlcsjhd"@127.0.0.1
|
|
master-bin.000001 # Query # # use `mysqltest1`; CREATE DEFINER=`zedjzlcsjhd`@`127.0.0.1` PROCEDURE `foo4`()
|
|
DETERMINISTIC
|
|
begin
|
|
insert into t2 values(3);
|
|
insert into t1 values (5);
|
|
end
|
|
master-bin.000001 # Query # # use `mysqltest1`; insert into t2 values(3)
|
|
master-bin.000001 # Query # # use `mysqltest1`; insert into t1 values (15)
|
|
master-bin.000001 # Query # # use `mysqltest1`; insert into t2 values(3)
|
|
master-bin.000001 # Query # # use `mysqltest1`; alter procedure foo4 sql security invoker
|
|
master-bin.000001 # Query # # use `mysqltest1`; insert into t2 values(3)
|
|
master-bin.000001 # Query # # use `mysqltest1`; insert into t1 values (5)
|
|
master-bin.000001 # Query # # use `mysqltest1`; delete from t2
|
|
master-bin.000001 # Query # # use `mysqltest1`; alter table t2 add unique (a)
|
|
master-bin.000001 # Query # # use `mysqltest1`; drop procedure foo4
|
|
master-bin.000001 # Query # # use `mysqltest1`; CREATE DEFINER=`root`@`localhost` PROCEDURE `foo4`()
|
|
DETERMINISTIC
|
|
begin
|
|
insert into t2 values(20),(20);
|
|
end
|
|
master-bin.000001 # Query # # use `mysqltest1`; insert into t2 values(20),(20)
|
|
master-bin.000001 # Query # # use `mysqltest1`; drop procedure foo4
|
|
master-bin.000001 # Query # # use `mysqltest1`; drop procedure foo
|
|
master-bin.000001 # Query # # use `mysqltest1`; drop procedure foo2
|
|
master-bin.000001 # Query # # use `mysqltest1`; drop procedure foo3
|
|
master-bin.000001 # Query # # use `mysqltest1`; CREATE DEFINER=`root`@`localhost` FUNCTION `fn1`(x int) RETURNS int(11)
|
|
DETERMINISTIC
|
|
begin
|
|
insert into t1 values (x);
|
|
return x+2;
|
|
end
|
|
master-bin.000001 # Query # # use `mysqltest1`; delete t1,t2 from t1,t2
|
|
master-bin.000001 # Query # # use `mysqltest1`; SELECT `mysqltest1`.`fn1`(20)
|
|
master-bin.000001 # Query # # use `mysqltest1`; insert into t2 values(fn1(21))
|
|
master-bin.000001 # Query # # use `mysqltest1`; drop function fn1
|
|
master-bin.000001 # Query # # use `mysqltest1`; CREATE DEFINER=`root`@`localhost` FUNCTION `fn1`() RETURNS int(11)
|
|
NO SQL
|
|
begin
|
|
return unix_timestamp();
|
|
end
|
|
master-bin.000001 # Query # # use `mysqltest1`; delete from t1
|
|
master-bin.000001 # Query # # use `mysqltest1`; insert into t1 values(fn1())
|
|
master-bin.000001 # Query # # use `mysqltest1`; CREATE DEFINER=`zedjzlcsjhd`@`127.0.0.1` FUNCTION `fn2`() RETURNS int(11)
|
|
NO SQL
|
|
begin
|
|
return unix_timestamp();
|
|
end
|
|
master-bin.000001 # Query # # use `mysqltest1`; CREATE DEFINER=`root`@`localhost` FUNCTION `fn3`() RETURNS int(11)
|
|
READS SQL DATA
|
|
begin
|
|
return 0;
|
|
end
|
|
master-bin.000001 # Query # # use `mysqltest1`; delete from t2
|
|
master-bin.000001 # Query # # use `mysqltest1`; alter table t2 add unique (a)
|
|
master-bin.000001 # Query # # use `mysqltest1`; drop function fn1
|
|
master-bin.000001 # Query # # use `mysqltest1`; CREATE DEFINER=`root`@`localhost` FUNCTION `fn1`(x int) RETURNS int(11)
|
|
begin
|
|
insert into t2 values(x),(x);
|
|
return 10;
|
|
end
|
|
master-bin.000001 # Query # # use `mysqltest1`; SELECT `mysqltest1`.`fn1`(100)
|
|
master-bin.000001 # Query # # use `mysqltest1`; SELECT `mysqltest1`.`fn1`(20)
|
|
master-bin.000001 # Query # # use `mysqltest1`; delete from t1
|
|
master-bin.000001 # Query # # use `mysqltest1`; CREATE DEFINER=`root`@`localhost` trigger trg before insert on t1 for each row set new.a= 10
|
|
master-bin.000001 # Query # # use `mysqltest1`; insert into t1 values (1)
|
|
master-bin.000001 # Query # # use `mysqltest1`; delete from t1
|
|
master-bin.000001 # Query # # use `mysqltest1`; drop trigger trg
|
|
master-bin.000001 # Query # # use `mysqltest1`; insert into t1 values (1)
|
|
master-bin.000001 # Query # # use `mysqltest1`; CREATE DEFINER=`root`@`localhost` PROCEDURE `foo`()
|
|
READS SQL DATA
|
|
select * from t1
|
|
master-bin.000001 # Query # # use `mysqltest1`; drop procedure foo
|
|
master-bin.000001 # Query # # use `mysqltest1`; drop function fn1
|
|
master-bin.000001 # Query # # drop database mysqltest1
|
|
master-bin.000001 # Query # # drop user "zedjzlcsjhd"@127.0.0.1
|
|
master-bin.000001 # Query # # use `test`; drop function if exists f1
|
|
master-bin.000001 # Query # # use `test`; CREATE DEFINER=`root`@`localhost` FUNCTION `f1`() RETURNS int(11)
|
|
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
|
|
master-bin.000001 # Query # # use `test`; CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select 1 as a
|
|
master-bin.000001 # Query # # use `test`; create table t1 (a int)
|
|
master-bin.000001 # Query # # use `test`; insert into t1 (a) values (f1())
|
|
master-bin.000001 # Query # # use `test`; drop view v1
|
|
master-bin.000001 # Query # # use `test`; drop function f1
|
|
master-bin.000001 # Query # # use `test`; DROP PROCEDURE IF EXISTS p1
|
|
master-bin.000001 # Query # # use `test`; DROP TABLE IF EXISTS t1
|
|
master-bin.000001 # Query # # use `test`; CREATE TABLE t1(col VARCHAR(10))
|
|
master-bin.000001 # Query # # use `test`; CREATE DEFINER=`root`@`localhost` PROCEDURE `p1`(arg VARCHAR(10))
|
|
INSERT INTO t1 VALUES(arg)
|
|
master-bin.000001 # Query # # use `test`; INSERT INTO t1 VALUES( NAME_CONST('arg',_latin1'test' COLLATE 'latin1_swedish_ci'))
|
|
master-bin.000001 # Query # # use `test`; DROP PROCEDURE p1
|
|
master-bin.000001 # Query # # use `test`; DROP PROCEDURE IF EXISTS p1
|
|
master-bin.000001 # Query # # use `test`; DROP FUNCTION IF EXISTS f1
|
|
master-bin.000001 # Query # # use `test`; CREATE DEFINER=`root`@`localhost` PROCEDURE `p1`()
|
|
SET @a = 1
|
|
master-bin.000001 # Query # # use `test`; CREATE DEFINER=`root`@`localhost` FUNCTION `f1`() RETURNS int(11)
|
|
RETURN 0
|
|
master-bin.000001 # Query # # use `test`; DROP PROCEDURE p1
|
|
master-bin.000001 # Query # # use `test`; DROP FUNCTION f1
|
|
master-bin.000001 # Query # # use `test`; drop table t1
|
|
master-bin.000001 # Query # # drop database if exists mysqltest
|
|
master-bin.000001 # Query # # drop database if exists mysqltest2
|
|
master-bin.000001 # Query # # create database mysqltest
|
|
master-bin.000001 # Query # # create database mysqltest2
|
|
master-bin.000001 # Query # # use `mysqltest2`; create table t ( t integer )
|
|
master-bin.000001 # Query # # use `mysqltest2`; CREATE DEFINER=`root`@`localhost` PROCEDURE `mysqltest`.`test`()
|
|
begin end
|
|
master-bin.000001 # Query # # use `mysqltest2`; insert into t values ( 1 )
|
|
master-bin.000001 # Query # # use `mysqltest2`; CREATE DEFINER=`root`@`localhost` FUNCTION `f1`() RETURNS int(11)
|
|
begin
|
|
insert into t values (1);
|
|
return 0;
|
|
end
|
|
master-bin.000001 # Query # # use `mysqltest`; SELECT `mysqltest2`.`f1`()
|
|
set @@global.log_bin_trust_routine_creators= @old_log_bin_trust_routine_creators;
|
|
Warnings:
|
|
Warning 1287 '@@log_bin_trust_routine_creators' is deprecated and will be removed in a future release. Please use '@@log_bin_trust_function_creators' instead
|
|
set @@global.log_bin_trust_function_creators= @old_log_bin_trust_function_creators;
|
|
set @@global.log_bin_trust_routine_creators= @old_log_bin_trust_routine_creators;
|
|
Warnings:
|
|
Warning 1287 '@@log_bin_trust_routine_creators' is deprecated and will be removed in a future release. Please use '@@log_bin_trust_function_creators' instead
|
|
set @@global.log_bin_trust_function_creators= @old_log_bin_trust_function_creators;
|
|
drop database mysqltest;
|
|
drop database mysqltest2;
|
|
use test;
|
|
/*!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|
|
|
show procedure status like '%mysqltestbug36570%';
|
|
Db Name Type Definer Modified Created Security_type Comment character_set_client collation_connection Database Collation
|
|
test mysqltestbug36570_p2 PROCEDURE root@localhost t t DEFINER latin1 latin1_swedish_ci latin1_swedish_ci
|
|
test mysqltestbug36570_p1 PROCEDURE root@localhost t t DEFINER latin1 latin1_swedish_ci latin1_swedish_ci
|
|
show create procedure ` mysqltestbug36570_p2`;
|
|
Procedure sql_mode Create Procedure character_set_client collation_connection Database Collation
|
|
mysqltestbug36570_p2 CREATE DEFINER=`root`@`localhost` PROCEDURE ` mysqltestbug36570_p2`( a int)
|
|
`label`:
|
|
begin
|
|
select a;
|
|
end latin1 latin1_swedish_ci latin1_swedish_ci
|
|
show procedure status like '%mysqltestbug36570%';
|
|
Db Name Type Definer Modified Created Security_type Comment character_set_client collation_connection Database Collation
|
|
test mysqltestbug36570_p2 PROCEDURE root@localhost t t DEFINER latin1 latin1_swedish_ci latin1_swedish_ci
|
|
test mysqltestbug36570_p1 PROCEDURE root@localhost t t DEFINER latin1 latin1_swedish_ci latin1_swedish_ci
|
|
show create procedure ` mysqltestbug36570_p2`;
|
|
Procedure sql_mode Create Procedure character_set_client collation_connection Database Collation
|
|
mysqltestbug36570_p2 CREATE DEFINER=`root`@`localhost` PROCEDURE ` mysqltestbug36570_p2`( a int)
|
|
`label`:
|
|
begin
|
|
select a;
|
|
end latin1 latin1_swedish_ci latin1_swedish_ci
|
|
call ` mysqltestbug36570_p2`(42);
|
|
a
|
|
42
|
|
show function status like '%mysqltestbug36570%';
|
|
Db Name Type Definer Modified Created Security_type Comment character_set_client collation_connection Database Collation
|
|
test mysqltestbug36570_f1 FUNCTION root@localhost t t DEFINER latin1 latin1_swedish_ci latin1_swedish_ci
|
|
flush logs;
|
|
/*!40019 SET @@session.max_insert_delayed_threads=0*/;
|
|
/*!50003 SET @OLD_COMPLETION_TYPE=@@COMPLETION_TYPE,COMPLETION_TYPE=0*/;
|
|
DELIMITER /*!*/;
|
|
ROLLBACK/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
SET @@session.pseudo_thread_id=999999999/*!*/;
|
|
SET @@session.foreign_key_checks=1, @@session.sql_auto_is_null=1, @@session.unique_checks=1, @@session.autocommit=1/*!*/;
|
|
SET @@session.sql_mode=0/*!*/;
|
|
SET @@session.auto_increment_increment=1, @@session.auto_increment_offset=1/*!*/;
|
|
/*!\C latin1 *//*!*/;
|
|
SET @@session.character_set_client=8,@@session.collation_connection=8,@@session.collation_server=8/*!*/;
|
|
SET @@session.lc_time_names=0/*!*/;
|
|
SET @@session.collation_database=DEFAULT/*!*/;
|
|
drop database if exists mysqltest1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
create database mysqltest1
|
|
/*!*/;
|
|
use mysqltest1/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
create table t1 (a varchar(100))
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` PROCEDURE `foo`()
|
|
begin
|
|
declare b int;
|
|
set b = 8;
|
|
insert into t1 values (b);
|
|
insert into t1 values (unix_timestamp());
|
|
end
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
insert into t1 values ( NAME_CONST('b',8))
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
insert into t1 values (unix_timestamp())
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
delete from t1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` PROCEDURE `foo2`()
|
|
select * from mysqltest1.t1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
alter procedure foo2 contains sql
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop table t1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
create table t1 (a int)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
create table t2 like t1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` PROCEDURE `foo3`()
|
|
DETERMINISTIC
|
|
insert into t1 values (15)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
grant CREATE ROUTINE, EXECUTE on mysqltest1.* to "zedjzlcsjhd"@127.0.0.1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
grant SELECT on mysqltest1.t1 to "zedjzlcsjhd"@127.0.0.1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
grant SELECT, INSERT on mysqltest1.t2 to "zedjzlcsjhd"@127.0.0.1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`zedjzlcsjhd`@`127.0.0.1` PROCEDURE `foo4`()
|
|
DETERMINISTIC
|
|
begin
|
|
insert into t2 values(3);
|
|
insert into t1 values (5);
|
|
end
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
insert into t2 values(3)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
insert into t1 values (15)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
insert into t2 values(3)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
alter procedure foo4 sql security invoker
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
insert into t2 values(3)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
insert into t1 values (5)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
delete from t2
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
alter table t2 add unique (a)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop procedure foo4
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` PROCEDURE `foo4`()
|
|
DETERMINISTIC
|
|
begin
|
|
insert into t2 values(20),(20);
|
|
end
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
insert into t2 values(20),(20)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop procedure foo4
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop procedure foo
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop procedure foo2
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop procedure foo3
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` FUNCTION `fn1`(x int) RETURNS int(11)
|
|
DETERMINISTIC
|
|
begin
|
|
insert into t1 values (x);
|
|
return x+2;
|
|
end
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
delete t1,t2 from t1,t2
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
SELECT `mysqltest1`.`fn1`(20)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
insert into t2 values(fn1(21))
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop function fn1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` FUNCTION `fn1`() RETURNS int(11)
|
|
NO SQL
|
|
begin
|
|
return unix_timestamp();
|
|
end
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
delete from t1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
insert into t1 values(fn1())
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`zedjzlcsjhd`@`127.0.0.1` FUNCTION `fn2`() RETURNS int(11)
|
|
NO SQL
|
|
begin
|
|
return unix_timestamp();
|
|
end
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` FUNCTION `fn3`() RETURNS int(11)
|
|
READS SQL DATA
|
|
begin
|
|
return 0;
|
|
end
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
delete from t2
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
alter table t2 add unique (a)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop function fn1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` FUNCTION `fn1`(x int) RETURNS int(11)
|
|
begin
|
|
insert into t2 values(x),(x);
|
|
return 10;
|
|
end
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
SELECT `mysqltest1`.`fn1`(100)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
SELECT `mysqltest1`.`fn1`(20)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
delete from t1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` trigger trg before insert on t1 for each row set new.a= 10
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
insert into t1 values (1)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
delete from t1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop trigger trg
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
insert into t1 values (1)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` PROCEDURE `foo`()
|
|
READS SQL DATA
|
|
select * from t1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop procedure foo
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop function fn1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop database mysqltest1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop user "zedjzlcsjhd"@127.0.0.1
|
|
/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop function if exists f1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` FUNCTION `f1`() RETURNS int(11)
|
|
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
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `v1` AS select 1 as a
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
create table t1 (a int)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
insert into t1 (a) values (f1())
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop view v1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop function f1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
DROP PROCEDURE IF EXISTS p1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
DROP TABLE IF EXISTS t1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE TABLE t1(col VARCHAR(10))
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` PROCEDURE `p1`(arg VARCHAR(10))
|
|
INSERT INTO t1 VALUES(arg)
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
INSERT INTO t1 VALUES( NAME_CONST('arg',_latin1'test' COLLATE 'latin1_swedish_ci'))
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
DROP PROCEDURE p1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
DROP PROCEDURE IF EXISTS p1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
DROP FUNCTION IF EXISTS f1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` PROCEDURE `p1`()
|
|
SET @a = 1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` FUNCTION `f1`() RETURNS int(11)
|
|
RETURN 0
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
DROP PROCEDURE p1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
DROP FUNCTION f1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop table t1
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop database if exists mysqltest
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop database if exists mysqltest2
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
create database mysqltest
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
create database mysqltest2
|
|
/*!*/;
|
|
use mysqltest2/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
create table t ( t integer )
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` PROCEDURE `mysqltest`.`test`()
|
|
begin end
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
insert into t values ( 1 )
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` FUNCTION `f1`() RETURNS int(11)
|
|
begin
|
|
insert into t values (1);
|
|
return 0;
|
|
end
|
|
/*!*/;
|
|
use mysqltest/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
SELECT `mysqltest2`.`f1`()
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop database mysqltest
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
drop database mysqltest2
|
|
/*!*/;
|
|
use test/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` PROCEDURE `mysqltestbug36570_p1`()
|
|
begin
|
|
select 1;
|
|
end
|
|
/*!*/;
|
|
use mysql/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` PROCEDURE `test`.` mysqltestbug36570_p2`( a int)
|
|
`label`:
|
|
begin
|
|
select a;
|
|
end
|
|
/*!*/;
|
|
SET TIMESTAMP=t/*!*/;
|
|
CREATE DEFINER=`root`@`localhost` FUNCTION `test`.`mysqltestbug36570_f1`() RETURNS int(11)
|
|
DETERMINISTIC
|
|
begin
|
|
return 3;
|
|
end
|
|
/*!*/;
|
|
DELIMITER ;
|
|
# End of log file
|
|
ROLLBACK /* added by mysqlbinlog */;
|
|
/*!50003 SET COMPLETION_TYPE=@OLD_COMPLETION_TYPE*/;
|
|
use test;
|
|
drop procedure mysqltestbug36570_p1;
|
|
drop procedure ` mysqltestbug36570_p2`;
|
|
drop function mysqltestbug36570_f1;
|
|
End of 5.0 tests
|
|
End of 5.1 tests
|