1
0
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:
monty@mysql.com
2004-07-01 17:26:45 +03:00
parent 2c6537e2cb
commit 78c1938848
3 changed files with 5 additions and 3 deletions

View File

@ -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:

View File

@ -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;