mirror of
https://github.com/MariaDB/server.git
synced 2026-05-14 19:07:15 +02:00
enable test cases for bugs fixed in xtradb.
disable test cases for bugs not fixed in xtradb. mysql-test/suite/innodb/t/innodb-lock.test: instead of disabling the test in disabled.def (hoping that somebody someday will enable it), skip it only for xtradb (not for innodb), and only for the current xtradb version. the test will enable itself automatically on the next xtradb merge mysql-test/suite/innodb/t/innodb_cmp_drop_table.test: instead of disabling the test in disabled.def (hoping that somebody someday will enable it), skip it only for xtradb (not for innodb), and only for the current xtradb version. the test will enable itself automatically on the next xtradb merge mysql-test/suite/innodb/t/innodb_corrupt_bit.test: fix the error number storage/innobase/handler/ha_innodb.cc: fix the error number storage/xtradb/handler/ha_innodb.cc: fix the error number
This commit is contained in:
parent
0c07546175
commit
baca1a40e9
8 changed files with 17 additions and 15 deletions
|
|
@ -5913,7 +5913,7 @@ ha_innobase::change_active_index(
|
|||
"InnoDB: Index %s for table %s is"
|
||||
" marked as corrupted",
|
||||
index_name, table_name);
|
||||
DBUG_RETURN(1);
|
||||
DBUG_RETURN(HA_ERR_INDEX_CORRUPT);
|
||||
} else {
|
||||
push_warning_printf(
|
||||
user_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
|
||||
|
|
|
|||
|
|
@ -6710,7 +6710,7 @@ ha_innobase::change_active_index(
|
|||
"InnoDB: Index %s for table %s is"
|
||||
" marked as corrupted",
|
||||
index_name, table_name);
|
||||
DBUG_RETURN(1);
|
||||
DBUG_RETURN(HA_ERR_INDEX_CORRUPT);
|
||||
} else {
|
||||
push_warning_printf(
|
||||
user_thd, MYSQL_ERROR::WARN_LEVEL_WARN,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue