diff options
author | unknown <monty@narttu.mysql.fi> | 2003-05-14 01:27:26 +0300 |
---|---|---|
committer | unknown <monty@narttu.mysql.fi> | 2003-05-14 01:27:26 +0300 |
commit | 13a23a879f3f2e9b3d09578e08802e6fe19f88f4 (patch) | |
tree | 20a0c2176ea7293129e729c7022715b730591b58 /mysql-test/r/repair.result | |
parent | 6c60313bc71ac1dc2a507efcc63e99208e54f599 (diff) | |
download | mariadb-git-13a23a879f3f2e9b3d09578e08802e6fe19f88f4.tar.gz |
Fix for MacOSX and symlinks
Fix for USE_FRM and crashed index file
configure.in:
Fix for MacOSX and symlinks
myisam/mi_open.c:
Give better error message in case of of crashed index file
mysql-test/r/repair.result:
new test case
mysql-test/r/update.result:
new test case
mysql-test/t/repair.test:
Added test with crashed MyISAM index header
mysql-test/t/update.test:
Added test case from bugs system
sql/handler.cc:
Indentation changes
sql/sql_table.cc:
Fix for USE_FRM and crashed index file
Diffstat (limited to 'mysql-test/r/repair.result')
-rw-r--r-- | mysql-test/r/repair.result | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/mysql-test/r/repair.result b/mysql-test/r/repair.result index ad869787b8a..6c2107b2cf3 100644 --- a/mysql-test/r/repair.result +++ b/mysql-test/r/repair.result @@ -11,4 +11,5 @@ test.t1 repair error The handler for the table doesn't support repair drop table t1; repair table t1 use_frm; Table Op Msg_type Msg_text -t1 repair error table is read-only or does not exists +test.t1 repair error Table 'test.t1' doesn't exist +create table t1 type=myisam SELECT 1,"table 1"; |