Commit 0c9946bc authored by unknown's avatar unknown

Post-merge fixes


mysql-test/r/partition_not_windows.result:
  Post-merge fixes
  New warnings
mysql-test/r/symlink.result:
  Post-merge fixes
  Typo
mysql-test/suite/rpl_ndb/t/rpl_ndb_transaction.test:
  Post-merge fixes
  Defeated creation of a warnings file.
mysql-test/t/partition_symlink.test:
  Post-merge fixes
  Fixed directory to an allowed one.
mysql-test/t/type_set.test:
  Post-merge fixes
  Defeated creation of a warnings file.
parent 8001dd1b
...@@ -23,6 +23,9 @@ partition p01 values less than (1000) ...@@ -23,6 +23,9 @@ partition p01 values less than (1000)
data directory='/not/existing' data directory='/not/existing'
index directory='/not/existing' index directory='/not/existing'
); );
Warnings:
Warning 0 DATA DIRECTORY option ignored
Warning 0 INDEX DIRECTORY option ignored
show create table t2; show create table t2;
Table Create Table Table Create Table
t2 CREATE TABLE `t2` ( t2 CREATE TABLE `t2` (
......
...@@ -140,16 +140,16 @@ DROP TABLE t1; ...@@ -140,16 +140,16 @@ DROP TABLE t1;
End of 5.0 tests End of 5.0 tests
CREATE TABLE t1(a INT) CREATE TABLE t1(a INT)
INDEX DIRECTORY='TEST_DIR/master-data/mysql'; INDEX DIRECTORY='TEST_DIR/master-data/mysql';
ERROR HY000: Incorrect arguments to INDEX DIRECORY ERROR HY000: Incorrect arguments to INDEX DIRECTORY
CREATE TABLE t1(a INT) CREATE TABLE t1(a INT)
DATA DIRECTORY='TEST_DIR/master-data/test'; DATA DIRECTORY='TEST_DIR/master-data/test';
ERROR HY000: Incorrect arguments to DATA DIRECORY ERROR HY000: Incorrect arguments to DATA DIRECTORY
CREATE TABLE t1(a INT) CREATE TABLE t1(a INT)
DATA DIRECTORY='TEST_DIR/master-data/'; DATA DIRECTORY='TEST_DIR/master-data/';
ERROR HY000: Incorrect arguments to DATA DIRECORY ERROR HY000: Incorrect arguments to DATA DIRECTORY
CREATE TABLE t1(a INT) CREATE TABLE t1(a INT)
INDEX DIRECTORY='TEST_DIR/master-data'; INDEX DIRECTORY='TEST_DIR/master-data';
ERROR HY000: Incorrect arguments to INDEX DIRECORY ERROR HY000: Incorrect arguments to INDEX DIRECTORY
CREATE TABLE t1(a INT) CREATE TABLE t1(a INT)
INDEX DIRECTORY='TEST_DIR/master-data_var'; INDEX DIRECTORY='TEST_DIR/master-data_var';
ERROR HY000: Can't create/write to file 'TEST_DIR/master-data_var/t1.MYI' (Errcode: 2) ERROR HY000: Can't create/write to file 'TEST_DIR/master-data_var/t1.MYI' (Errcode: 2)
......
...@@ -52,13 +52,13 @@ ROLLBACK; ...@@ -52,13 +52,13 @@ ROLLBACK;
BEGIN; BEGIN;
INSERT INTO tmyisam VALUES (5); INSERT INTO tmyisam VALUES (5);
INSERT INTO tmyisam VALUES (6); INSERT INTO tmyisam VALUES (6);
--warning 1196 #--warning 1196
ROLLBACK; ROLLBACK;
BEGIN; BEGIN;
INSERT INTO tndb VALUES (7); INSERT INTO tndb VALUES (7);
INSERT INTO tmyisam VALUES (7); INSERT INTO tmyisam VALUES (7);
--warning 1196 #--warning 1196
ROLLBACK; ROLLBACK;
SELECT * FROM tndb ORDER BY a; SELECT * FROM tndb ORDER BY a;
......
...@@ -134,8 +134,8 @@ eval create table t2 (i int ) ...@@ -134,8 +134,8 @@ eval create table t2 (i int )
partition by range (i) partition by range (i)
( (
partition p01 values less than (1000) partition p01 values less than (1000)
data directory="$MYSQLTEST_VARDIR/master-data/test/" data directory="$MYSQLTEST_VARDIR/tmp/"
index directory="$MYSQLTEST_VARDIR/master-data/test/" index directory="$MYSQLTEST_VARDIR/tmp/"
); );
enable_query_log; enable_query_log;
......
...@@ -75,4 +75,4 @@ INSERT INTO t1 VALUES(9223372036854775808); ...@@ -75,4 +75,4 @@ INSERT INTO t1 VALUES(9223372036854775808);
SELECT * FROM t1; SELECT * FROM t1;
DROP TABLE t1; DROP TABLE t1;
--# echo End of 5.0 tests -- echo End of 5.0 tests
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment