2005-03-15 19:48:42 +01:00
|
|
|
##############################################################################
|
|
|
|
#
|
2005-11-29 10:22:17 -08:00
|
|
|
# List the test cases that are to be disabled temporarily.
|
2005-03-15 19:48:42 +01:00
|
|
|
#
|
|
|
|
# Separate the test case name and the comment with ':'.
|
|
|
|
#
|
2006-04-10 17:54:42 +02:00
|
|
|
# <testcasename> : BUG#<xxxx> <date disabled> <disabler> <comment>
|
2005-03-15 19:48:42 +01:00
|
|
|
#
|
2005-12-22 06:39:02 +01:00
|
|
|
# Do not use any TAB characters for whitespace.
|
2005-03-15 19:48:42 +01:00
|
|
|
#
|
|
|
|
##############################################################################
|
2010-06-30 13:27:38 +04:00
|
|
|
lowercase_table3 : Bug#54845 2010-06-30 alik main.lowercase_table3 on Mac OSX
|
|
|
|
query_cache_28249 : Bug#43861 2009-03-25 main.query_cache_28249 fails sporadically
|
A fix for Bug#41158 "DROP TABLE holds LOCK_open during unlink()".
Remove acquisition of LOCK_open around file system operations,
since such operations are now protected by metadata locks.
Rework table discovery algorithm to not require LOCK_open.
No new tests added since all MDL locking operations are covered
in lock.test and mdl_sync.test, and as long as these tests
pass despite the increased concurrency, consistency must be
unaffected.
mysql-test/t/disabled.def:
Disable NDB tests due to Bug#55799.
sql/datadict.cc:
No longer necessary to protect ha_create_table() with
LOCK_open. Serial execution is now ensured by metadata
locks.
sql/ha_ndbcluster.cc:
Do not manipulate with LOCK_open in cluster code.
sql/ha_ndbcluster_binlog.cc:
Do not manipulate with LOCK_open in cluster code.
sql/ha_ndbcluster_binlog.h:
Update function signature.
sql/handler.cc:
Implement ha_check_if_table_exists().
@todo: some engines provide ha_table_exists_in_engine()
handlerton call, for those we perhaps shouldn't
call ha_discover(), to be more efficient.
Since currently it's only NDB, postpone till
integration with NDB.
sql/handler.h:
Declare ha_check_if_table_exists() function.
sql/mdl.cc:
Remove an obsolete comment.
sql/sql_base.cc:
Update to a new signature of close_cached_tables():
from now on we always call it without LOCK_open.
Update comments.
Remove get_table_share_with_create(), we should
not attempt to create a table under LOCK_open.
Introduce get_table_share_with_discover() instead,
which would request a back off action if the table
exists in engine.
Remove acquisition of LOCK_open for
data dictionary operations, such as check_if_table_exists().
Do not use get_table_share_with_create/discover for views,
where it's not needed.
Make tdc_remove_table() optionally acquire LOCK_open
to simplify usage of this function.
Use the right mutex in the partitioning code when
manipulating with thd->open_tables.
sql/sql_base.h:
Update signatures of changes functions.
sql/sql_insert.cc:
Do not wrap quick_rm_table() with LOCK_open acquisition,
this is unnecessary.
sql/sql_parse.cc:
Update to the new calling convention of tdc_remove_table().
Update to the new signature of close_cached_tables().
Update comments.
sql/sql_rename.cc:
Update to the new calling convention of tdc_remove_table().
Remove acquisition of LOCK_open around filesystem
operations.
sql/sql_show.cc:
Remove get_trigger_table_impl().
Do not acquire LOCK_open for a dirty read of the trigger
file.
sql/sql_table.cc:
Do not acquire LOCK_open for filesystem operations.
sql/sql_trigger.cc:
Do not require LOCK_open for trigger file I/O.
sql/sql_truncate.cc:
Update to the new signature of tdc_remove_table().
sql/sql_view.cc:
Do not require LOCK_open for view I/O.
Use tdc_remove_table() to expel view share.
Update comments.
sql/sys_vars.cc:
Update to the new signature of close_cached_tables().
2010-08-09 22:33:47 +04:00
|
|
|
ctype_utf8mb4_ndb : Bug#55799, Bug#51907, disabled by Konstantin 2010-08-06
|
2010-10-27 09:54:04 +05:30
|
|
|
main.mysqlhotcopy_myisam : Bug#56817 2010-10-21 anitha mysqlhotcopy* fails
|
|
|
|
main.mysqlhotcopy_archive: Bug#56817 2010-10-21 anitha mysqlhotcopy* fails
|
2010-11-15 16:17:38 +01:00
|
|
|
log_tables-big : Bug#48646 2010-11-15 mattiasj report already exists
|
|
|
|
read_many_rows_innodb : Bug#37635 2010-11-15 mattiasj report already exists
|
2010-11-16 01:11:06 +01:00
|
|
|
sum_distinct-big : Bug#56927 2010-11-15 mattiasj was not tested
|
|
|
|
alter_table-big : Bug#37248 2010-11-15 mattiasj was not tested
|
2010-11-16 02:01:49 +01:00
|
|
|
create-big : Bug#37248 2010-11-15 mattiasj was not tested
|