mirror of
https://github.com/MariaDB/server.git
synced 2026-01-06 05:22:24 +03:00
MDEV-6720 - enable connection log in mysqltest by default
This commit is contained in:
@@ -1,7 +1,7 @@
|
||||
include/master-slave.inc
|
||||
[connection master]
|
||||
==== Initialize ====
|
||||
[on master]
|
||||
connection master;
|
||||
create table t1 (id int);
|
||||
==== create a procedure that has a column aliase in a subquery ====
|
||||
drop procedure if exists test_procedure;
|
||||
@@ -14,12 +14,12 @@ from
|
||||
end;$$
|
||||
==== enable the binary log, then call the procedure ====
|
||||
call test_procedure(1234);
|
||||
[on slave]
|
||||
connection slave;
|
||||
select * from t1 order by id;
|
||||
id
|
||||
1234
|
||||
==== Clean up ====
|
||||
[on master]
|
||||
connection master;
|
||||
drop table t1;
|
||||
drop procedure test_procedure;
|
||||
include/rpl_end.inc
|
||||
|
||||
Reference in New Issue
Block a user