1
0
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:
Sergey Vojtovich
2016-03-25 20:51:22 +04:00
parent 5052e2479e
commit 282497dd6d
1559 changed files with 38534 additions and 9891 deletions

View File

@@ -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