Commit 78c19388 authored by monty@mysql.com's avatar monty@mysql.com

Portability fixes (For Netware)

parent 2c6537e2
...@@ -9,7 +9,7 @@ drop database if exists test1; ...@@ -9,7 +9,7 @@ drop database if exists test1;
Warnings: Warnings:
Note 1008 Can't drop database 'test1'; database doesn't exist Note 1008 Can't drop database 'test1'; database doesn't exist
show tables from test1; show tables from test1;
ERROR HY000: Can't read dir of './test1/' (Errcode: 2) ERROR HY000: Can't read dir of './test1/' (Errcode: X)
create table t1 (a int); create table t1 (a int);
drop table if exists t1; drop table if exists t1;
Warnings: Warnings:
......
...@@ -6,7 +6,8 @@ connection master; ...@@ -6,7 +6,8 @@ connection master;
drop database if exists test1; drop database if exists test1;
sync_slave_with_master; sync_slave_with_master;
# can't read dir # can't read dir
error 12; --replace_result "Errcode: 1" "Errcode: X" "Errcode: 2" "Errcode: X"
--error 12
show tables from test1; show tables from test1;
connection slave; connection slave;
...@@ -15,7 +16,7 @@ connection master; ...@@ -15,7 +16,7 @@ connection master;
drop table if exists t1; drop table if exists t1;
sync_slave_with_master; sync_slave_with_master;
# table does not exist # table does not exist
error 1146; --error 1146
select * from t1; select * from t1;
connection master; connection master;
......
...@@ -15,6 +15,7 @@ suffix="standard" ...@@ -15,6 +15,7 @@ suffix="standard"
extra_configs=" \ extra_configs=" \
--with-innodb \ --with-innodb \
--enable-thread-safe-client \ --enable-thread-safe-client \
--with-archive-storage-engine \
" "
. $path/compile-netware-END . $path/compile-netware-END
......
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