diff options
author | unknown <msvensson@pilot.mysql.com> | 2008-04-03 21:40:10 +0200 |
---|---|---|
committer | unknown <msvensson@pilot.mysql.com> | 2008-04-03 21:40:10 +0200 |
commit | 7674605d7940b428a8bbfe23fd0ef497e99c60c1 (patch) | |
tree | 76dd3a7c6efd70af4dfc8db28827b033dcd983df /mysql-test/r/symlink.result | |
parent | 3ad402570dcc61e01979db294938123ea9eb4c46 (diff) | |
download | mariadb-git-7674605d7940b428a8bbfe23fd0ef497e99c60c1.tar.gz |
Fix paths in test and result files
mysql-test/r/loaddata.result:
Update paths in result
mysql-test/r/myisam.result:
Update paths in result
mysql-test/r/partition_not_windows.result:
Update paths in result
mysql-test/r/symlink.result:
Update paths in result
mysql-test/suite/binlog/r/binlog_index.result:
Update paths in result
mysql-test/suite/binlog/t/binlog_auto_increment_bug33029.test:
Update paths
mysql-test/suite/binlog/t/binlog_index.test:
Update paths
mysql-test/suite/rpl/t/rpl_row_mysqlbinlog.test:
Fix merge error s/start-position/stop-position/
mysql-test/t/drop.test:
Update paths
mysql-test/t/loaddata.test:
Update paths
mysql-test/t/myisam.test:
Update paths
mysql-test/t/partition_not_windows.test:
Update paths
mysql-test/t/symlink.test:
Update paths
Diffstat (limited to 'mysql-test/r/symlink.result')
-rw-r--r-- | mysql-test/r/symlink.result | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/symlink.result b/mysql-test/r/symlink.result index bda0d7d1451..41b0c2b2488 100644 --- a/mysql-test/r/symlink.result +++ b/mysql-test/r/symlink.result @@ -151,16 +151,16 @@ CREATE TABLE t1 (a INT) ENGINE MYISAM; DROP TABLE t1; End of 5.0 tests CREATE TABLE t1(a INT) -INDEX DIRECTORY='TEST_DIR/master-data/mysql'; +INDEX DIRECTORY='MYSQLD_DATADIR/mysql'; ERROR HY000: Incorrect arguments to INDEX DIRECTORY CREATE TABLE t1(a INT) -DATA DIRECTORY='TEST_DIR/master-data/test'; +DATA DIRECTORY='MYSQLD_DATADIR/test'; ERROR HY000: Incorrect arguments to DATA DIRECTORY CREATE TABLE t1(a INT) -DATA DIRECTORY='TEST_DIR/master-data/'; +DATA DIRECTORY='MYSQLD_DATADIR/'; ERROR HY000: Incorrect arguments to DATA DIRECTORY CREATE TABLE t1(a INT) -INDEX DIRECTORY='TEST_DIR/master-data'; +INDEX DIRECTORY='MYSQLD_DATADIR'; ERROR HY000: Incorrect arguments to INDEX DIRECTORY CREATE TABLE t1(a INT) INDEX DIRECTORY='TEST_DIR/master-data_var'; |