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:
|
||||
Note 1008 Can't drop database 'test1'; database doesn't exist
|
||||
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);
|
||||
drop table if exists t1;
|
||||
Warnings:
|
||||
|
@ -6,7 +6,8 @@ connection master;
|
||||
drop database if exists test1;
|
||||
sync_slave_with_master;
|
||||
# can't read dir
|
||||
error 12;
|
||||
--replace_result "Errcode: 1" "Errcode: X" "Errcode: 2" "Errcode: X"
|
||||
--error 12
|
||||
show tables from test1;
|
||||
|
||||
connection slave;
|
||||
@ -15,7 +16,7 @@ connection master;
|
||||
drop table if exists t1;
|
||||
sync_slave_with_master;
|
||||
# table does not exist
|
||||
error 1146;
|
||||
--error 1146
|
||||
select * from t1;
|
||||
|
||||
connection master;
|
||||
|
Reference in New Issue
Block a user