diff options
author | monty@mysql.com <> | 2004-10-07 10:50:13 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-10-07 10:50:13 +0300 |
commit | 6239edc1d189968aad442943fc44fcd09f44888f (patch) | |
tree | 2ca781cd075a86d68ada5b4565202c8f62a8d84a /mysql-test/t/derived.test | |
parent | 62f3cd6a31d3c1ffe7ad17d9de862a3c0859f56a (diff) | |
download | mariadb-git-6239edc1d189968aad442943fc44fcd09f44888f.tar.gz |
After merge fixes
Some bigger code changes was necessary becasue of the multi-table-update and the new HANDLER code
Diffstat (limited to 'mysql-test/t/derived.test')
-rw-r--r-- | mysql-test/t/derived.test | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/t/derived.test b/mysql-test/t/derived.test index fbfd3ccdef1..64e3fe8929b 100644 --- a/mysql-test/t/derived.test +++ b/mysql-test/t/derived.test @@ -101,7 +101,7 @@ SELECT a.x FROM (SELECT 1 AS x) AS a HAVING a.x = 1; # # Connect without a database create table t1 select 1 as a; -connect (con1,localhost,mysqltest_1,,*NO-ONE*,$MASTER_MYPORT,master.sock); +connect (con1,localhost,mysqltest_1,,*NO-ONE*,$MASTER_MYPORT,$MASTER_MYSOCK); connection con1; --error 1046 select 2 as a from (select * from t1) b; |