diff options
author | unknown <monty@mysql.com> | 2004-09-02 16:57:26 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-09-02 16:57:26 +0300 |
commit | 167017935a8d8dc5cbe3d4c2fff267d14d4636d8 (patch) | |
tree | c8687c9c8877b4526e838a928b732b81f40f80ad /mysql-test/t/alter_table.test | |
parent | c7d107254d2365f63dfb4fbd60232f93b1557a27 (diff) | |
download | mariadb-git-167017935a8d8dc5cbe3d4c2fff267d14d4636d8.tar.gz |
After merge fixes
mysql-test/mysql-test-run.sh:
Export MASTER_MYSOCK (used in some tests)
mysql-test/t/alter_table.test:
Use MASTER_MYSOCK instead of master.sock
Diffstat (limited to 'mysql-test/t/alter_table.test')
-rw-r--r-- | mysql-test/t/alter_table.test | 4 |
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; |