Merge mysql.com:/home/svoj/devel/mysql/BUG26976/mysql-5.0-engines
into mysql.com:/home/svoj/devel/mysql/BUG26976/mysql-5.1-engines
This commit is contained in:
commit
09cd5b5ef8
@ -852,8 +852,8 @@ SELECT * FROM tm1;
|
|||||||
ERROR HY000: Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
|
ERROR HY000: Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
|
||||||
CHECK TABLE tm1;
|
CHECK TABLE tm1;
|
||||||
Table Op Msg_type Msg_text
|
Table Op Msg_type Msg_text
|
||||||
test.tm1 check Error Table './test/t1' is differently defined or of non-MyISAM type or doesn't exist
|
test.tm1 check Error Table 'test.t1' is differently defined or of non-MyISAM type or doesn't exist
|
||||||
test.tm1 check Error Table './test/t2' is differently defined or of non-MyISAM type or doesn't exist
|
test.tm1 check Error Table 'test.t2' is differently defined or of non-MyISAM type or doesn't exist
|
||||||
test.tm1 check Error Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
|
test.tm1 check Error Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
|
||||||
test.tm1 check error Corrupt
|
test.tm1 check error Corrupt
|
||||||
CREATE TABLE t1(a INT);
|
CREATE TABLE t1(a INT);
|
||||||
@ -861,7 +861,7 @@ SELECT * FROM tm1;
|
|||||||
ERROR HY000: Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
|
ERROR HY000: Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
|
||||||
CHECK TABLE tm1;
|
CHECK TABLE tm1;
|
||||||
Table Op Msg_type Msg_text
|
Table Op Msg_type Msg_text
|
||||||
test.tm1 check Error Table './test/t2' is differently defined or of non-MyISAM type or doesn't exist
|
test.tm1 check Error Table 'test.t2' is differently defined or of non-MyISAM type or doesn't exist
|
||||||
test.tm1 check Error Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
|
test.tm1 check Error Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
|
||||||
test.tm1 check error Corrupt
|
test.tm1 check error Corrupt
|
||||||
CREATE TABLE t2(a BLOB);
|
CREATE TABLE t2(a BLOB);
|
||||||
@ -869,7 +869,7 @@ SELECT * FROM tm1;
|
|||||||
ERROR HY000: Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
|
ERROR HY000: Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
|
||||||
CHECK TABLE tm1;
|
CHECK TABLE tm1;
|
||||||
Table Op Msg_type Msg_text
|
Table Op Msg_type Msg_text
|
||||||
test.tm1 check Error Table './test/t2' is differently defined or of non-MyISAM type or doesn't exist
|
test.tm1 check Error Table 'test.t2' is differently defined or of non-MyISAM type or doesn't exist
|
||||||
test.tm1 check Error Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
|
test.tm1 check Error Unable to open underlying table which is differently defined or of non-MyISAM type or doesn't exist
|
||||||
test.tm1 check error Corrupt
|
test.tm1 check error Corrupt
|
||||||
ALTER TABLE t2 MODIFY a INT;
|
ALTER TABLE t2 MODIFY a INT;
|
||||||
|
@ -52,11 +52,22 @@ extern int check_definition(MI_KEYDEF *t1_keyinfo, MI_COLUMNDEF *t1_recinfo,
|
|||||||
uint t1_keys, uint t1_recs,
|
uint t1_keys, uint t1_recs,
|
||||||
MI_KEYDEF *t2_keyinfo, MI_COLUMNDEF *t2_recinfo,
|
MI_KEYDEF *t2_keyinfo, MI_COLUMNDEF *t2_recinfo,
|
||||||
uint t2_keys, uint t2_recs, bool strict);
|
uint t2_keys, uint t2_recs, bool strict);
|
||||||
|
static void split_file_name(const char *file_name,
|
||||||
|
LEX_STRING *db, LEX_STRING *name);
|
||||||
|
|
||||||
|
|
||||||
extern "C" void myrg_print_wrong_table(const char *table_name)
|
extern "C" void myrg_print_wrong_table(const char *table_name)
|
||||||
{
|
{
|
||||||
|
LEX_STRING db, name;
|
||||||
|
char buf[FN_REFLEN];
|
||||||
|
split_file_name(table_name, &db, &name);
|
||||||
|
memcpy(buf, db.str, db.length);
|
||||||
|
buf[db.length]= '.';
|
||||||
|
memcpy(buf + db.length + 1, name.str, name.length);
|
||||||
|
buf[db.length + name.length + 1]= 0;
|
||||||
push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_ERROR,
|
push_warning_printf(current_thd, MYSQL_ERROR::WARN_LEVEL_ERROR,
|
||||||
ER_ADMIN_WRONG_MRG_TABLE, ER(ER_ADMIN_WRONG_MRG_TABLE),
|
ER_ADMIN_WRONG_MRG_TABLE, ER(ER_ADMIN_WRONG_MRG_TABLE),
|
||||||
table_name);
|
buf);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user