summaryrefslogtreecommitdiff
path: root/mysql-test/t/alter_table.test
diff options
context:
space:
mode:
authormonty@mysql.com <>2004-09-02 16:58:01 +0300
committermonty@mysql.com <>2004-09-02 16:58:01 +0300
commit8547d98c88369c517853fe9f27cdcab1c14dfbc9 (patch)
tree281d7c00080d7a9f2533661ce2da8fad25419530 /mysql-test/t/alter_table.test
parentea5fd2b4bbaa10b4885855b2b46b3687a0f7cda8 (diff)
parentdec44916c141565b41ddfcccdb3e9755b82bd744 (diff)
downloadmariadb-git-8547d98c88369c517853fe9f27cdcab1c14dfbc9.tar.gz
Merge bk-internal.mysql.com:/home/bk/mysql-4.1
into mysql.com:/home/my/mysql-4.1
Diffstat (limited to 'mysql-test/t/alter_table.test')
-rw-r--r--mysql-test/t/alter_table.test4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/t/alter_table.test b/mysql-test/t/alter_table.test
index 317af337c46..eb35aa90fe2 100644
--- a/mysql-test/t/alter_table.test
+++ b/mysql-test/t/alter_table.test
@@ -110,14 +110,14 @@ drop database mysqltest;
#
# Rights for renaming test (Bug #3270)
#
-connect (root,localhost,root,,test,$MASTER_MYPORT,master.sock);
+connect (root,localhost,root,,test,$MASTER_MYPORT,$MASTER_MYSOCK);
connection root;
--disable_warnings
create database mysqltest;
--enable_warnings
create table mysqltest.t1 (a int,b int,c int);
grant all on mysqltest.t1 to mysqltest_1@localhost;
-connect (user1,localhost,mysqltest_1,,mysqltest,$MASTER_MYPORT,master.sock);
+connect (user1,localhost,mysqltest_1,,mysqltest,$MASTER_MYPORT,$MASTER_MYSOCK);
connection user1;
-- error 1142
alter table t1 rename t2;