mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Portability fixes (For Netware)
This commit is contained in:
@ -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;
|
|||||||
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;
|
|||||||
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"
|
|||||||
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
|
||||||
|
Reference in New Issue
Block a user