summaryrefslogtreecommitdiff
path: root/mysql-test/t
diff options
context:
space:
mode:
authorunknown <sasha@mysql.sashanet.com>2001-01-30 20:40:23 -0700
committerunknown <sasha@mysql.sashanet.com>2001-01-30 20:40:23 -0700
commit6ad4e30495b915ec9e7a3f1774f9e5993e9cf00c (patch)
tree121b98858c3be199b7fb3558c622debd80a27127 /mysql-test/t
parent040f0c0d0f85ca0fd3a045824568ba684acacc4e (diff)
downloadmariadb-git-6ad4e30495b915ec9e7a3f1774f9e5993e9cf00c.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')
-rwxr-xr-xmysql-test/t/rpl000017-slave.sh4
-rw-r--r--mysql-test/t/rpl000017.test2
2 files changed, 4 insertions, 2 deletions
diff --git a/mysql-test/t/rpl000017-slave.sh b/mysql-test/t/rpl000017-slave.sh
index fe875f1a778..4415f093aad 100755
--- a/mysql-test/t/rpl000017-slave.sh
+++ b/mysql-test/t/rpl000017-slave.sh
@@ -2,8 +2,8 @@ cat > $MYSQL_TEST_DIR/var/slave-data/master.info <<EOF
master-bin.001
4
127.0.0.1
-root
-
+replicate
+aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
9306
1
EOF
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;