diff options
author | unknown <bar@mysql.com> | 2004-07-08 18:54:07 +0500 |
---|---|---|
committer | unknown <bar@mysql.com> | 2004-07-08 18:54:07 +0500 |
commit | 27dc52fa022ba3d7d9cd87b866d84d9c03940048 (patch) | |
tree | c43bdd35c88c202349d72278d66beb8e80b93041 /mysql-test/t/connect.test | |
parent | 80e005737b921624a7cf9d6dbdea6597897341e1 (diff) | |
download | mariadb-git-27dc52fa022ba3d7d9cd87b866d84d9c03940048.tar.gz |
Bug#4338: mysql-test-run fails if compiled with non-latin1 character set
Diffstat (limited to 'mysql-test/t/connect.test')
-rw-r--r-- | mysql-test/t/connect.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/connect.test b/mysql-test/t/connect.test index 7585ff0f608..32c1479ae04 100644 --- a/mysql-test/t/connect.test +++ b/mysql-test/t/connect.test @@ -42,7 +42,7 @@ show tables; # check if old password version also works -update mysql.user set password=old_password("gambling2") where user="test"; +update mysql.user set password=old_password("gambling2") where user=_binary"test"; flush privileges; #connect (con1,localhost,test,gambling2,""); @@ -68,5 +68,5 @@ show tables; # remove user 'test' so that other tests which may use 'test' # do not depend on this test. -delete from mysql.user where user="test"; +delete from mysql.user where user=_binary"test"; flush privileges; |