diff options
author | unknown <knielsen@mysql.com> | 2006-01-04 15:25:32 +0100 |
---|---|---|
committer | unknown <knielsen@mysql.com> | 2006-01-04 15:25:32 +0100 |
commit | 95cecbf815ee7db84a681181d083dd97b96d1c58 (patch) | |
tree | 7bdbc9d06d604de221b2a747f9604ccbfa07c426 /mysql-test/t/rpl_sp.test | |
parent | 314f0fbf32d33baab1d43de180892a274f46992d (diff) | |
download | mariadb-git-95cecbf815ee7db84a681181d083dd97b96d1c58.tar.gz |
BUG#14931: Temporarily add synchronization to avoid sporadic test failures until
the bug is fixed.
mysql-test/r/rpl_sp.result:
BUG#14931: Temporarily add synchronization to avoid sporadic failures until
the bug is fixed.
mysql-test/t/rpl_sp.test:
BUG#14931: Temporarily add synchronization to avoid sporadic failures until
the bug is fixed.
Diffstat (limited to 'mysql-test/t/rpl_sp.test')
-rw-r--r-- | mysql-test/t/rpl_sp.test | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/t/rpl_sp.test b/mysql-test/t/rpl_sp.test index 386582f8f1b..8fa330584e2 100644 --- a/mysql-test/t/rpl_sp.test +++ b/mysql-test/t/rpl_sp.test @@ -87,6 +87,14 @@ 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; |