diff options
author | unknown <sasha@mysql.sashanet.com> | 2001-01-30 20:40:23 -0700 |
---|---|---|
committer | unknown <sasha@mysql.sashanet.com> | 2001-01-30 20:40:23 -0700 |
commit | 22c52efbd48e9b53177878860ae1d265827827f5 (patch) | |
tree | 121b98858c3be199b7fb3558c622debd80a27127 /mysql-test/t/rpl000017.test | |
parent | bf1f8fd3eb4b98dadd265f8ed10d92220dabe1bb (diff) | |
download | mariadb-git-22c52efbd48e9b53177878860ae1d265827827f5.tar.gz |
test oversized password
fix to make table.cc compile
mysql-test/mysql-test-run.sh:
explictily state empty password for slave thread
mysql-test/t/rpl000017-slave.sh:
test oversized passwords for slave
mysql-test/t/rpl000017.test:
test oversized passwords
sql/table.cc:
fix to make it compile
Diffstat (limited to 'mysql-test/t/rpl000017.test')
-rw-r--r-- | mysql-test/t/rpl000017.test | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mysql-test/t/rpl000017.test b/mysql-test/t/rpl000017.test index c93d861bec8..d695561b671 100644 --- a/mysql-test/t/rpl000017.test +++ b/mysql-test/t/rpl000017.test @@ -2,6 +2,8 @@ connect (master,localhost,root,,test,0,mysql-master.sock); connect (slave,localhost,root,,test,0,mysql-slave.sock); connection master; reset master; +grant file on *.* to replicate@localhost identified by + 'aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa'; connection slave; slave start; connection master; |