1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +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

@ -13,12 +13,19 @@ CCCCCCCCCC 3
CCCCCCCCCC 4
set debug_sync='myisam_before_repair_by_sort wait_for go';
optimize table t1;
connect con1,localhost,root,,;
select a, left(b,10) from t1 order by a;
connect con2,localhost,root,,;
set debug_sync='now signal go';
connection default;
Table Op Msg_type Msg_text
test.t1 optimize status OK
connection con1;
a left(b,10)
3 CCCCCCCCCC
4 CCCCCCCCCC
disconnect con1;
disconnect con2;
connection default;
drop table t1;
set debug_sync='reset';