mariadb/mysql-test/r
Konstantin Osipov 36290c0923 A pre-requisite patch for the fix for Bug#52044.
This patch also fixes Bug#55452 "SET PASSWORD is
replicated twice in RBR mode".

The goal of this patch is to remove the release of 
metadata locks from close_thread_tables().
This is necessary to not mistakenly release
the locks in the course of a multi-step
operation that involves multiple close_thread_tables()
or close_tables_for_reopen().

On the same token, move statement commit outside 
close_thread_tables().

Other cleanups:
Cleanup COM_FIELD_LIST.
Don't call close_thread_tables() in COM_SHUTDOWN -- there
are no open tables there that can be closed (we leave
the locked tables mode in THD destructor, and this
close_thread_tables() won't leave it anyway).

Make open_and_lock_tables() and open_and_lock_tables_derived()
call close_thread_tables() upon failure.
Remove the calls to close_thread_tables() that are now
unnecessary.

Simplify the back off condition in Open_table_context.

Streamline metadata lock handling in LOCK TABLES 
implementation.

Add asserts to ensure correct life cycle of 
statement transaction in a session.

Remove a piece of dead code that has also become redundant
after the fix for Bug 37521.

mysql-test/r/variables.result:
  Update results: set @@autocommit and statement transaction/
  prelocked mode.
mysql-test/r/view.result:
  A harmless change in CHECK TABLE <view> status for a broken view.
  If previously a failure to prelock all functions used in a view 
  would leave the connection in LTM_PRELOCKED mode, now we call
  close_thread_tables() from open_and_lock_tables()
  and leave prelocked mode, thus some check in mysql_admin_table() that
  works only in prelocked/locked tables mode is no longer activated.
mysql-test/suite/rpl/r/rpl_row_implicit_commit_binlog.result:
  Fixed Bug#55452 "SET PASSWORD is replicated twice in
  RBR mode": extra binlog events are gone from the
  binary log.
mysql-test/t/variables.test:
  Add a test case: set autocommit and statement transaction/prelocked
  mode.
sql/event_data_objects.cc:
  Simplify code in Event_job_data::execute().
  Move sp_head memory management to lex_end().
sql/event_db_repository.cc:
  Move the release of metadata locks outside
  close_thread_tables().
  Make sure we call close_thread_tables() when
  open_and_lock_tables() fails and remove extra
  code from the events data dictionary.
  Use close_mysql_tables(), a new internal
  function to properly close mysql.* tables
  in the data dictionary.
  Contract Event_db_repository::drop_events_by_field,
  drop_schema_events into one function.
  When dropping all events in a schema,
  make sure we don't mistakenly release all
  locks acquired by DROP DATABASE. These
  include locks on the database name
  and the global intention exclusive
  metadata lock.
sql/event_db_repository.h:
  Function open_event_table() does not require an instance 
  of Event_db_repository.
sql/events.cc:
  Use close_mysql_tables() instead of close_thread_tables()
  to bootstrap events, since the latter no longer
  releases metadata locks.
sql/ha_ndbcluster.cc:
  - mysql_rm_table_part2 no longer releases
  acquired metadata locks. Do it in the caller.
sql/ha_ndbcluster_binlog.cc:
  Deploy the new protocol for closing thread
  tables in run_query() and ndb_binlog_index
  code.
sql/handler.cc:
  Assert that we never call ha_commit_trans/
  ha_rollback_trans in sub-statement, which
  is now the case.
sql/handler.h:
  Add an accessor to check whether THD_TRANS object
  is empty (has no transaction started).
sql/log.cc:
  Update a comment.
sql/log_event.cc:
  Since now we commit/rollback statement transaction in 
  mysql_execute_command(), we need a mechanism to communicate
  from Query_log_event::do_apply_event() to mysql_execute_command()
  that the statement transaction should be rolled back, not committed.
  Ideally it would be a virtual method of THD. I hesitate
  to make THD a virtual base class in this already large patch.
  Use a thd->variables.option_bits for now.
  
  Remove a call to close_thread_tables() from the slave IO
  thread. It doesn't open any tables, and the protocol
  for closing thread tables is more complicated now.
  
  Make sure we properly close thread tables, however, 
  in Load_data_log_event, which doesn't
  follow the standard server execution procedure
  with mysql_execute_command().
  @todo: this piece should use Server_runnable
  framework instead.
  Remove an unnecessary call to mysql_unlock_tables().
sql/rpl_rli.cc:
  Update Relay_log_info::slave_close_thread_tables()
  to follow the new close protocol.
sql/set_var.cc:
  Remove an unused header.
sql/slave.cc:
  Remove an unnecessary call to
  close_thread_tables().
sql/sp.cc:
  Remove unnecessary calls to close_thread_tables()
  from SP DDL implementation. The tables will
  be closed by the caller, in mysql_execute_command().
  When dropping all routines in a database, make sure
  to not mistakenly drop all metadata locks acquired
  so far, they include the scoped lock on the schema.
sql/sp_head.cc:
  Correct the protocol that closes thread tables
  in an SP instruction.
  Clear lex->sphead before cleaning up lex
  with lex_end to make sure that we don't
  delete the sphead twice. It's considered
  to be "cleaner" and more in line with
  future changes than calling delete lex->sphead
  in other places that cleanup the lex.
sql/sp_head.h:
  When destroying m_lex_keeper of an instruction,
  don't delete the sphead that all lex objects
  share. 
  @todo: don't store a reference to routine's sp_head
  instance in instruction's lex.
sql/sql_acl.cc:
  Don't call close_thread_tables() where the caller will
  do that for us.
  Fix Bug#55452 "SET PASSWORD is replicated twice in RBR 
  mode" by disabling RBR replication in change_password()
  function.
  Use close_mysql_tables() in bootstrap and ACL reload
  code to make sure we release all metadata locks.
sql/sql_base.cc:
  This is the main part of the patch:
  - remove manipulation with thd->transaction
  and thd->mdl_context from close_thread_tables().
  Now this function is only responsible for closing
  tables, nothing else.
  This is necessary to be able to easily use
  close_thread_tables() in procedures, that
  involve multiple open/close tables, which all
  need to be protected continuously by metadata
  locks.
  Add asserts ensuring that TABLE object
  is only used when is protected by a metadata lock.
  Simplify the back off condition of Open_table_context,
  we no longer need to look at the autocommit mode.
  Make open_and_lock_tables() and open_normal_and_derived_tables()
  close thread tables and release metadata locks acquired so-far 
  upon failure. This simplifies their usage.
  Implement close_mysql_tables().
sql/sql_base.h:
  Add declaration for close_mysql_tables().
sql/sql_class.cc:
  Remove a piece of dead code that has also become redundant
  after the fix for Bug 37521.
  The code became dead when my_eof() was made a non-protocol method,
  but a method that merely modifies the diagnostics area.
  The code became redundant with the fix for Bug#37521, when 
  we started to cal close_thread_tables() before
  Protocol::end_statement().
sql/sql_do.cc:
  Do nothing in DO if inside a substatement
  (the assert moved out of trans_rollback_stmt).
sql/sql_handler.cc:
  Add comments.
sql/sql_insert.cc:
  Remove dead code. 
  Release metadata locks explicitly at the
  end of the delayed insert thread.
sql/sql_lex.cc:
  Add destruction of lex->sphead to lex_end(),
  lex "reset" method called at the end of each statement.
sql/sql_parse.cc:
  Move close_thread_tables() and other related
  cleanups to mysql_execute_command()
  from dispatch_command(). This has become
  possible after the fix for Bug#37521.
  Mark federated SERVER statements as DDL.
  
  Next step: make sure that we don't store
  eof packet in the query cache, and move
  the query cache code outside mysql_parse.
  
  Brush up the code of COM_FIELD_LIST.
  Remove unnecessary calls to close_thread_tables().
  
  When killing a query, don't report "OK"
  if it was a suicide.
sql/sql_parse.h:
  Remove declaration of a function that is now static.
sql/sql_partition.cc:
  Remove an unnecessary call to close_thread_tables().
sql/sql_plugin.cc:
  open_and_lock_tables() will clean up
  after itself after a failure.
  Move close_thread_tables() above
  end: label, and replace with close_mysql_tables(),
  which will also release the metadata lock
  on mysql.plugin.
sql/sql_prepare.cc:
  Now that we no longer release locks in close_thread_tables()
  statement prepare code has become more straightforward.
  Remove the now redundant check for thd->killed() (used
  only by the backup project) from Execute_server_runnable.
  Reorder code to take into account that now mysql_execute_command()
  performs lex->unit.cleanup() and close_thread_tables().
sql/sql_priv.h:
  Add a new option to server options to interact
  between the slave SQL thread and execution
  framework (hack). @todo: use a virtual
  method of class THD instead.
sql/sql_servers.cc:
  Due to Bug 25705 replication of 
  DROP/CREATE/ALTER SERVER is broken.
  Make sure at least we do not attempt to 
  replicate these statements using RBR,
  as this violates the assert in close_mysql_tables().
sql/sql_table.cc:
  Do not release metadata locks in mysql_rm_table_part2,
  this is done by the caller.
  Do not call close_thread_tables() in mysql_create_table(),
  this is done by the caller. 
  Fix a bug in DROP TABLE under LOCK TABLES when,
  upon error in wait_while_table_is_used() we would mistakenly
  release the metadata lock on a non-dropped table.
  Explicitly release metadata locks when doing an implicit
  commit.
sql/sql_trigger.cc:
  Now that we delete lex->sphead in lex_end(),
  zero the trigger's sphead in lex after loading
  the trigger, to avoid double deletion.
sql/sql_udf.cc:
  Use close_mysql_tables() instead of close_thread_tables().
sql/sys_vars.cc:
  Remove code added in scope of WL#4284 which would
  break when we perform set @@session.autocommit along
  with setting other variables and using tables or functions.
  A test case added to variables.test.
sql/transaction.cc:
  Add asserts.
sql/tztime.cc:
  Use close_mysql_tables() rather than close_thread_tables().
2010-07-27 14:25:53 +04:00
..
1st.result WL#2360 Performance schema 2010-01-11 18:47:27 -07:00
alias.result Backport of Bug#27249 to mysql-next-mr 2009-11-10 18:43:43 -02:00
almost_full.result Bug #42408 Faulty regex for detecting [Warning] and [ERROR] in mysqld error log 2009-08-25 15:56:50 +02:00
alter_table-big.result Bug #49741 test files contain explicit references to bin/relay-log positions 2010-05-24 21:54:08 +08:00
alter_table.result Test for bug #53820 "ALTER a MEDIUMINT column table causes full 2010-07-26 13:22:38 +04:00
analyze.result Revert and fix confusion between tests analyse and analyze. Following the 2010-07-12 10:38:38 -03:00
ansi.result
archive-big.result
archive.result manual merge from mysql-trunk-bugfixing 2010-06-06 13:19:29 +02:00
archive_bitfield.result
archive_gis.result Backport of WL #2934: Make/find library for doing float/double 2009-12-22 19:23:13 +03:00
archive_plugin.result only This is a backport of the patch for 47739 into trunk. 2010-04-26 21:39:24 +02:00
auto_increment.result Bug#46616: Merge 2009-08-20 14:30:59 +02:00
backup.result Bug#47974 'TYPE=storage_engine' is deprecated and will be 2010-02-09 11:30:50 +01:00
bench_count_distinct.result Ported WL#3220 to mysql-next-mr. 2009-09-28 10:21:25 +03:00
big_test.require
bigint.result Manual merge from mysql-5.1-bugteam to mysql-trunk-merge. 2010-02-26 16:06:31 +03:00
binary.result
binlog_tx_isolation.result
blackhole_plugin.result backport of patch for blckhole plugin (47748) to trunk-bugfixing. 2010-04-26 20:44:10 +02:00
bool.result
bootstrap.result
bug39022.result A 5.1-only version of fix for bug #46947 "Embedded SELECT 2010-05-28 00:07:40 +04:00
bug46080.result Unset the execute bit where it's not needed. 2010-07-03 20:17:03 -03:00
bug46261.result Bug#46261 Plugins can be installed with --skip-grant-tables 2010-04-22 15:52:00 +02:00
bug46760.result WL#5349 Change default storage engine to InnoDB 2010-06-17 22:51:35 +02:00
bug47671.result Fix for BUG#47671 - wrong character-set after upgrade from 5.1.34 to 5.1.39 2009-11-25 12:25:49 +05:30
bulk_replace.result
cache_innodb.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
case.result WL#2649 Number-to-string conversions 2010-02-11 08:17:25 +04:00
case_insensitive_file_system.require Bug#37402: Mysql cant read partitioned table with capital letter in the name 2008-07-11 01:14:13 +02:00
case_insensitive_fs.require Bug#41049 does syntax "grant" case insensitive? 2009-10-27 12:09:19 +04:00
case_sensitive_file_system.require
cast.result Backport of WL #2934: Make/find library for doing float/double 2009-12-22 19:23:13 +03:00
change_user.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
check.result 2. Slice of fix for Bug#42003 tests missing the disconnect of connections <> default 2009-02-05 21:47:23 +01:00
check_var_limit.require
client_xml.result merge of 38158 to 5.1-bugteam 2008-07-18 15:00:45 +03:00
comment_column.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
comment_column2.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
comment_index.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
comment_table.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
comments.result Manual merge of bug#26030 in mysql-5.1-bugteam 2008-07-07 15:53:20 -06:00
commit.result Bug#20837 Apparent change of isolation level during transaction 2010-06-08 19:47:10 +02:00
commit_1innodb.result BUG#50670: Slave stops with error code 1644 2010-04-28 14:47:49 +02:00
compare.result Manual merge of mysql-5.1-bugteam to mysql-trunk-merge. 2010-03-12 12:51:53 +03:00
compress.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
concurrent_innodb_safelog.result Fix for Bug#42308 Several server tests do not pass MTR's --check option 2009-05-15 12:15:56 +02:00
concurrent_innodb_unsafelog.result Fix for Bug#42308 Several server tests do not pass MTR's --check option 2009-05-15 12:15:56 +02:00
connect.result Merge 5.0 -> 5.1 of fix for Bug#42003 and Bug#43114 2009-03-06 15:56:17 +01:00
consistent_snapshot.result Bug#44664: valgrind warning for COMMIT_AND_CHAIN and ROLLBACK_AND_CHAIN 2009-05-11 20:54:00 -03:00
constraints.result Bug#11714 Non-sensical ALTER TABLE ADD CONSTRAINT allowed 2010-01-22 19:00:19 -07:00
contributors.result
count_distinct.result Bug#51980 mysqld service crashes with a simple COUNT(DISTINCT) query over a view 2010-04-13 11:38:28 +02:00
count_distinct2.result
count_distinct3.result Bug#26887 - main.count_distinct3 fails randomly 2009-04-16 13:47:44 -04:00
crash_commit_before.result
create-big.result Bug #49741 test files contain explicit references to bin/relay-log positions 2010-05-24 21:54:08 +08:00
create.result This patch backports test coverage for: 2010-06-11 10:14:38 +02:00
create_not_windows.result
create_select_tmp.result
csv.result Manual merge from mysql-trunk-merge. 2010-02-24 16:52:27 +03:00
csv_alter_table.result Bug#33970 Test main.csv_alter_table disabled. 2008-11-17 15:25:27 -05:00
csv_not_null.result Bug #39265: fix for the bug 33699 should be reverted 2009-02-05 13:49:32 +04:00
ctype_ascii.result
ctype_big5.result WL#4583 Case conversion in Asian character sets 2010-01-14 15:17:57 +04:00
ctype_binary.result Bug#54668 User variable assignments get wrong type 2010-07-09 09:39:41 +04:00
ctype_collate.result Review fixes for BUG#48161 and BUG#48447 2009-11-06 11:49:27 +01:00
ctype_cp932_binlog_row.result Merge BUG#43263 from 5.0-bugteam to 5.1-bugteam 2009-05-31 13:44:41 +08:00
ctype_cp932_binlog_stm.result Manual merge 2010-05-26 22:34:25 +08:00
ctype_cp1250_ch.result After merge fix 2008-03-08 01:14:56 +04:00
ctype_cp1251.result Bug#54668 User variable assignments get wrong type 2010-07-09 09:39:41 +04:00
ctype_create.result
ctype_errors.result WL#751 Error message construction, backport 2009-10-15 17:23:43 +05:00
ctype_eucjpms.result Unset the execute bit where it's not needed. 2010-07-03 20:17:03 -03:00
ctype_euckr.result WL#4583 Case conversion in Asian character sets 2010-01-14 15:17:57 +04:00
ctype_filename.result
ctype_filesystem.result Addendum to bug #37339 : make the test case portable to windows 2008-12-01 13:34:53 +02:00
ctype_gb2312.result WL#4583 Case conversion in Asian character sets 2010-01-14 15:17:57 +04:00
ctype_gbk.result WL#4583 Case conversion in Asian character sets 2010-01-14 15:17:57 +04:00
ctype_gbk_binlog.result Bug#46010 main.ctype_gbk_binlog fails sporadically : Table 't2' already exists 2009-09-07 13:42:54 +08:00
ctype_hebrew.result
ctype_latin1.result Bug#54668 User variable assignments get wrong type 2010-07-09 09:39:41 +04:00
ctype_latin1_de.result
ctype_latin2.result
ctype_latin2_ch.result
ctype_ldml.result Manual merge of mysql-trunk into mysql-trunk-merge. 2010-03-24 18:03:44 +03:00
ctype_many.result Backporting WL#1213 2010-02-24 13:15:34 +04:00
ctype_mb.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
ctype_recoding.result WL#751 Error message construction, backport 2009-10-15 17:23:43 +05:00
ctype_sjis.result WL#3090 Japanese Character Set adjustments 2010-02-15 09:57:24 +04:00
ctype_tis620.result
ctype_uca.result Merge stella.local:/home2/mydev/mysql-5.1-amain 2008-03-26 10:27:00 +01:00
ctype_ucs.result Bug#54668 User variable assignments get wrong type 2010-07-09 09:39:41 +04:00
ctype_ucs2_def.result WL#751 Error message construction, backport 2009-10-15 17:23:43 +05:00
ctype_ujis.result WL#3090 Japanese Character Set adjustments 2010-02-15 09:57:24 +04:00
ctype_ujis_ucs2.result
ctype_utf8.result Bug#52520 Difference in tinytext utf column metadata 2010-06-02 16:23:50 +04:00
ctype_utf8mb4.result Bug#52520 Difference in tinytext utf column metadata 2010-06-02 16:23:50 +04:00
ctype_utf8mb4_heap.result Fixing non-determenistic results. 2010-03-05 12:17:19 +04:00
ctype_utf8mb4_innodb.result Fixing non-determenistic results. 2010-03-05 12:17:19 +04:00
ctype_utf8mb4_myisam.result Fixing non-determenistic results. 2010-03-05 12:17:19 +04:00
ctype_utf8mb4_ndb.result Fixing non-determenistic results. 2010-03-05 12:17:19 +04:00
ctype_utf16.result Bug#52520 Difference in tinytext utf column metadata 2010-06-02 16:23:50 +04:00
ctype_utf16_uca.result Backporting WL#1213 2010-02-24 13:15:34 +04:00
ctype_utf32.result Bug#52520 Difference in tinytext utf column metadata 2010-06-02 16:23:50 +04:00
ctype_utf32_uca.result Backporting WL#1213 2010-02-24 13:15:34 +04:00
date_formats.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
ddl_i18n_koi8r.result backported: 2010-01-15 15:42:15 +04:00
ddl_i18n_utf8.result backported: 2010-01-15 15:42:15 +04:00
deadlock_innodb.result
debug_sync.result Implement new type-of-operation-aware metadata locks. 2010-02-01 14:43:06 +03:00
default.result Bug#33717 INSERT...(default) fails for enum. Crashes CSV tables, loads spaces for MyISAM 2010-02-17 16:13:42 +04:00
delayed.result Manual merge from mysql-trunk. 2009-12-11 12:39:38 +03:00
delete.result Manual merge of mysql-5.1-bugteam to mysql-trunk-merge. 2010-05-24 00:41:18 +04:00
deprecated_features.result BUG#48048: Deprecated constructs need removal in Betony 2009-11-04 12:28:20 +00:00
derived.result Backport of Bug#27525 to mysql-next-mr 2009-11-10 16:48:46 -02:00
dirty_close.result Backport of Bug#10374 to mysql-next-mr 2009-11-10 17:09:27 -02:00
disabled_partition.require Bug#39893: Crash if select on a partitioned table, when partitioning is disabled 2009-01-08 15:16:44 +01:00
distinct.result Bug #46159: simple query that never returns 2009-09-06 00:42:17 +04:00
drop-no_root.result Backporting of Bug#40128 from 6.0 to next-mr. 2009-10-09 18:52:49 +04:00
drop.result Bug #54282 Crash in MDL_context::upgrade_shared_lock_to_exclusive 2010-06-07 17:27:40 +02:00
drop_debug.result Backport of: 2009-12-08 10:53:40 +03:00
empty_table.result
endspace.result
error_simulation.result Bug#41660: Sort-index_merge for non-first join table may 2010-06-24 15:21:23 +02:00
errors.result Bug#52430 Incorrect key in the error message for duplicate key error involving BINARY type 2010-05-27 20:01:43 +04:00
events_1.result A backport of a patch for Bug#35297. 2009-10-08 00:57:03 +04:00
events_2.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
events_bugs.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
events_embedded.result Bug#35997 Event scheduler seems to let the server crash, if it is embedded. 2008-05-09 09:43:02 +02:00
events_grant.result Bug#35427 INFORMATION_SCHEMA.TABLES.TABLE_CATALOG is NULL, should be "def" 2009-10-23 16:02:20 +05:00
events_logs_tests.result
events_microsec.result
events_restart.result Mereg events_restart_phase* to events_restart 2008-04-09 09:43:20 +02:00
events_scheduling.result Backport from next-mr-bugfixing of tor.didriksen@sun.com-20100106140051-3j2iuag63eltsr2e 2010-05-19 11:18:59 +02:00
events_stress.result Fix for Bug#42308 Several server tests do not pass MTR's --check option 2009-05-15 12:15:56 +02:00
events_time_zone.result Fix for Bug#39979 main.events_time_zone does not clean up 2008-11-14 17:18:20 +01:00
events_trans.result
events_trans_notembedded.result
execution_constants.result
explain.result Manual merge from mysql-5.1-bugteam to mysql-trunk-merge. 2010-06-02 14:01:26 +04:00
fix_priv_tables.result
flush.result A fix and a test case for Bug#51710 FLUSH TABLES <view> WITH READ 2010-03-10 17:35:25 +03:00
flush2.result BUG#48048: Deprecated constructs need removal in Betony 2009-11-04 12:28:20 +00:00
flush_block_commit.result Backport of: 2009-12-09 18:56:34 +03:00
flush_block_commit_notembedded.result Manual merge 2010-05-26 22:34:25 +08:00
flush_read_lock_kill.result Last slice of fix for Bug#42003 tests missing the disconnect of connections <> default 2009-03-03 21:34:18 +01:00
flush_table.result Initial import of WL#3726 "DDL locking for all metadata objects". 2009-11-30 18:55:03 +03:00
foreign_key.result Bug#34455 Ambiguous foreign keys syntax is accepted 2010-01-25 04:55:31 -07:00
fulltext.result Manual merge of mysql-5.1-bugteam into mysql-trunk-merge. 2010-04-02 19:17:43 +04:00
fulltext2.result
fulltext3.result
fulltext_cache.result
fulltext_distinct.result
fulltext_left_join.result
fulltext_multi.result
fulltext_order_by.result Bug #49734: Crash on EXPLAIN EXTENDED UNION ... ORDER BY <any non-const-function> 2009-12-22 17:52:15 +02:00
fulltext_plugin.result BUG#39746 - Debug flag breaks struct definition 2008-12-17 17:24:34 +04:00
fulltext_update.result
fulltext_var.result
func_analyse.result Revert and fix confusion between tests analyse and analyze. Following the 2010-07-12 10:38:38 -03:00
func_compress.result WL#2110 (SIGNAL) 2009-09-10 03:18:29 -06:00
func_concat.result Bug #40625: Concat fails on DOUBLE values in a Stored 2010-04-03 00:30:22 +04:00
func_crypt.result Manual merge. 2009-06-01 16:00:38 +04:00
func_date_add.result
func_default.result Bug#30302: Tables that were optimized away are printed in the 2009-10-19 15:13:26 +04:00
func_des_encrypt.result Bug #35087: Inserting duplicate values at one time with DES_ENCRYPT leads 2009-04-17 18:52:57 +03:00
func_digest.result Bug#54661 sha2() returns BINARY result 2010-07-07 10:38:11 +04:00
func_encrypt.result WL#2110 (SIGNAL) 2009-09-10 03:18:29 -06:00
func_encrypt_nossl.result Backport of: 2010-04-13 19:04:45 +04:00
func_equal.result
func_gconcat.result Manual merge of mysql-5.1-bugteam into mysql-trunk-merge. 2010-04-03 21:35:51 +04:00
func_group.result Backport of WL #2934: Make/find library for doing float/double 2009-12-22 19:23:13 +03:00
func_group_innodb.result
func_if.result auto merge 5.0-bugteam --> 5.1-bugteam (bug 40761) 2008-12-12 18:19:33 +04:00
func_in.result Bug#54477: Crash on IN / CASE with NULL arguments 2010-06-22 22:53:08 +04:00
func_isnull.result 5.1-bugteam->trunk-merge merge 2010-06-08 10:47:23 +04:00
func_like.result Automerge. 2010-06-24 15:29:53 +04:00
func_math.result Manual merge. 2010-03-19 11:29:12 +03:00
func_misc.result Bug #52165: Assertion failed: file .\dtoa.c, line 465 2010-04-07 13:59:02 +04:00
func_op.result
func_regexp.result Bug#30302: Tables that were optimized away are printed in the 2009-10-19 15:13:26 +04:00
func_rollback.result Additional tests inspired by Bug 2008-04-09 15:56:25 +02:00
func_sapdb.result Backport to 5.6.0 2009-11-04 10:17:39 +01:00
func_set.result Bug#45168: assertion with convert() and empty set value 2009-06-16 16:36:15 +02:00
func_str.result Manual merge of mysql-5.1-bugteam into mysql-trunk-merge. 2010-04-02 19:17:43 +04:00
func_system.result
func_test.result Bug #8433: Overflow must be an error 2010-03-18 13:38:29 +03:00
func_time.result Manual merge of mysql-5.1-bugteam to mysql-trunk-merge. 2010-02-22 00:33:11 +03:00
func_timestamp.result
gcc296.result
gis-rtree.result BUG#51877 - HANDLER interface causes invalid memory read 2010-03-25 15:49:01 +04:00
gis.result merge from mysql-trunk-bugfixing 2010-02-11 18:32:53 +01:00
grant.result Manual merge of mysql-5.1-bugteam to mysql-trunk-merge. 2010-05-09 02:03:35 +04:00
grant2.result merging from 5.1 to rep+2 starting at gca(5.1, next-mr) == build@mysql.com-20091208092611-pbno5awyb0v38hs7 2009-12-17 00:09:52 +00:00
grant3.result Fix for Bug #41597 - After rename of user, there are additional grants when 2009-10-20 11:47:57 +05:30
grant4.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
grant_cache_no_prot.result Fix for Bug#42308 Several server tests do not pass MTR's --check option 2009-05-15 12:15:56 +02:00
grant_cache_ps_prot.result Fix for Bug#42308 Several server tests do not pass MTR's --check option 2009-05-15 12:15:56 +02:00
grant_lowercase_fs.result Bug#41049 does syntax "grant" case insensitive? 2009-10-27 12:09:19 +04:00
greedy_optimizer.result WL#5252: Deprecate --optimizer_search_depth=63 2010-03-01 17:31:02 +01:00
group_by.result Manual merge of mysql-5.1-bugteam to mysql-trunk-merge. 2010-05-24 00:41:18 +04:00
group_min_max.result Merge of fix for bug#53859. 2010-06-11 10:15:55 +02:00
group_min_max_innodb.result Fixed bug #36632: SELECT DISTINCT from a simple view on an 2008-06-27 23:50:53 +05:00
handler_innodb.result Bug #54401 assert in Diagnostics_area::set_eof_status , HANDLER 2010-07-05 13:59:34 +02:00
handler_myisam.result Bug #54401 assert in Diagnostics_area::set_eof_status , HANDLER 2010-07-05 13:59:34 +02:00
have_big5.require
have_binlog_format_mixed.require
have_binlog_format_row.require
have_binlog_format_statement.require
have_compress.require
have_cp866.require
have_cp932.require
have_cp1250_ch.require
have_cp1251.require
have_crypt.require
have_debug.require
have_debug_sync.require WL#4259 - Debug Sync Facility 2009-09-29 17:38:40 +02:00
have_eucjpms.require
have_euckr.require
have_gb2312.require
have_gbk.require
have_geometry.require
have_koi8r.require
have_latin2_ch.require
have_local_infile.require
have_log_bin.require
have_met_timezone.require
have_moscow_leap_timezone.require
have_mysql_upgrade.result
have_ndb_extra.require
have_ndbapi_examples.require
have_nodebug.require Bug#33637 SHOW PROCEDURE CODE/SHOW FUNCTION CODE sp_name gives a syntax error. 2009-10-29 10:51:04 -06:00
have_outfile.require Merge 5.0 -> 5.1 2009-02-03 14:45:17 +01:00
have_partition.require
have_perror.require
have_profiling.require WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
have_query_cache.require
have_sjis.require
have_ssl.require
have_ssl_is_yes_or_disabled_only.require Backport of: 2010-04-13 19:04:45 +04:00
have_symlink.require
have_tis620.require
have_ucs2.require
have_ujis.require
have_utf8.require
have_utf8mb4.require Backporting WL#1213 2010-02-24 13:15:34 +04:00
have_utf16.require Backporting WL#1213 2010-02-24 13:15:34 +04:00
have_utf32.require Backporting WL#1213 2010-02-24 13:15:34 +04:00
having.result 5.1-bugteam->trunk-merge merge 2010-07-09 14:46:46 +04:00
heap.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
heap_auto_increment.result
heap_btree.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
heap_hash.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
help.result
implicit_commit.result Bug #51336 Assert in reload_acl_and_cache during RESET QUERY CACHE 2010-02-26 10:58:33 +01:00
index_merge_innodb.result Fix index_merge_innodb.result (Bug 45727). 2009-10-08 13:27:45 +04:00
index_merge_myisam.result WL#5197 "Move @@engine_condition_pushdown to @@optimizer_switch" 2010-01-06 11:54:45 +01:00
information_schema-big.result Port of fix for BUG#42893 "main.information_schema times out sporadically" 2009-10-05 16:22:48 +02:00
information_schema.result merge 2010-07-15 18:46:41 +03:00
information_schema_chmod.result
information_schema_db.result backported: 2010-01-15 15:42:15 +04:00
information_schema_inno.result Bug#35427 INFORMATION_SCHEMA.TABLES.TABLE_CATALOG is NULL, should be "def" 2009-10-23 16:02:20 +05:00
information_schema_parameters.result Addendum #3 to bug #53095 : fixed the wrong mysql-trunk tests. 2010-07-09 15:55:13 +03:00
information_schema_part.result pre push fix of test results 2010-05-26 09:56:55 +02:00
information_schema_routines.result Addendum #3 to bug #53095 : fixed the wrong mysql-trunk tests. 2010-07-09 15:55:13 +03:00
init_connect.result
init_file.result Bug #42507 mtr2: the --check is fooled up by a code executed in --init_file 2009-04-02 13:00:44 +02:00
innodb_ignore_builtin.result Bug#42610 Dynamic plugin broken in 5.1.31 2009-02-09 19:03:52 +04:00
innodb_mysql_lock.result Bug #49891 View DDL breaks REPEATABLE READ 2010-06-26 22:23:28 +02:00
innodb_mysql_lock2.result Yet another follow-up for the 5.5 version of fix for 2010-05-30 13:27:44 +04:00
innodb_mysql_sync.result Bug #53757 assert in mysql_truncate_by_delete 2010-06-25 09:07:18 +02:00
insert.result Backport of WL #2934: Make/find library for doing float/double 2009-12-22 19:23:13 +03:00
insert_notembedded.result Backport of: 2009-11-20 22:51:12 +03:00
insert_select.result initial merge from 5.1-mtr 2009-09-04 15:20:58 +02:00
insert_update.result Fix for Bug#43546 Several 5.0 tests do not pass MTR's --check option 2009-04-28 20:12:18 +02:00
ipv4_as_ipv6.result Improvements to reduce the output for better reading and more stability. 2009-11-26 09:03:04 +01:00
ipv6.result New patch for bug#49579, now with "have_ipv4_mapped.inc". 2010-01-29 11:48:11 +01:00
is_debug_build.require
is_embedded.require Bug#35997 Event scheduler seems to let the server crash, if it is embedded. 2008-05-09 09:43:02 +02:00
isam.result
join.result Manual merge of mysql-5.1-bugteam to mysql-trunk-merge. 2010-04-30 00:33:06 +04:00
join_crash.result
join_nested.result
join_optimizer.result Back-port from 6.0 of the fix for 2009-10-19 15:14:43 +02:00
join_outer.result 5.1-bugteam->trunk-merge merge 2010-06-01 11:57:23 +04:00
join_outer_innodb.result BUG#35850 "Performance regression in 5.1.23/5.1.24" 2008-05-07 09:58:21 +04:00
key.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
key_cache.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
key_diff.result
key_primary.result
keywords.result
kill.result Initial import of WL#3726 "DDL locking for all metadata objects". 2009-11-30 18:55:03 +03:00
limit.result Bug#37075: offset of limit clause might be truncated on 32-bits server w/o big tables 2008-10-15 18:34:51 -03:00
loaddata.result merge 2010-07-14 15:05:20 +03:00
loaddata_autocom_innodb.result
loadxml.result Bug#51571 load xml infile causes server crash 2010-05-05 14:34:20 +04:00
locale.result Manual merge of mysql-5.1-bugteam to mysql-trunk-merge. 2010-02-22 00:33:11 +03:00
lock.result Implement new type-of-operation-aware metadata locks. 2010-02-01 14:43:06 +03:00
lock_multi.result Bug #51240 ALTER TABLE of a locked MERGE table fails 2010-02-26 13:40:25 +01:00
lock_multi_bug38499.result Reduce test case runtime. 2009-08-28 18:49:16 -03:00
lock_multi_bug38691.result Reduce test case runtime. 2009-08-28 18:49:16 -03:00
lock_sync.result Yet another follow-up for the 5.5 version of fix for 2010-05-30 13:27:44 +04:00
lock_tables_lost_commit.result 1. Slice of fix for Bug#42003 tests missing the disconnect of connections <> default 2009-02-02 22:20:25 +01:00
log_state.result Bug #30584: delete with order by and limit clauses does not 2010-06-23 00:32:29 +04:00
log_state_bug33693.result Bug #33693 general log name and location depend on PID file, 2009-10-12 15:35:30 +02:00
log_tables-big.result
log_tables.result minimal changes to errmst-utf8.txt (mostly whitespace) to match 6.0-codebase better 2009-12-22 12:02:52 +01:00
log_tables_debug.result Post-merge fix: modify regular expression to better handle 24 hour 2009-06-15 20:27:27 -03:00
log_tables_upgrade.result Bug#49823: mysql_upgrade fatal error due to general_log / slow_low CSV NULL 2010-02-26 09:22:48 -03:00
long_tmpdir.result
lowercase0.require Bug#37402: Mysql cant read partitioned table with capital letter in the name 2008-07-11 01:14:13 +02:00
lowercase1.require
lowercase2.require
lowercase_fs_off.result Manual merge from mysql-trunk-merge. 2009-11-06 17:20:27 +03:00
lowercase_mixed_tmpdir.result
lowercase_mixed_tmpdir_innodb.result Unset the execute bit where it's not needed. 2010-07-03 20:17:03 -03:00
lowercase_table.result
lowercase_table2.result Bug#54846 main.lowercase_table2 on Mac OSX 2010-06-28 11:23:50 +02:00
lowercase_table3.result Bug #42408 Faulty regex for detecting [Warning] and [ERROR] in mysqld error log 2009-08-28 16:13:27 +02:00
lowercase_table_grant.result
lowercase_table_qcache.result
lowercase_utf8.result 5.0->bugteam->5.1-bugteam merge 2009-02-18 16:09:46 +04:00
lowercase_view.result Bug #53095: SELECT column_name FROM INFORMATION_SCHEMA.STATISTICS 2010-06-25 15:59:44 +03:00
mdl_sync.result Followup to Bug #54360 Deadlock DROP/ALTER/CREATE DATABASE 2010-07-02 11:26:27 +02:00
merge-big.result
merge.result A fix and a test case for Bug#36171 "CREATE TEMPORARY TABLE and 2010-07-02 20:07:57 +04:00
merge_innodb.result
merge_mmap.result A fix and a test case for Bug#36171 "CREATE TEMPORARY TABLE and 2010-07-02 20:07:57 +04:00
merge_recover.result Backport of revid 2617.69.21, 2617.69.22, 2617.29.23: 2009-12-08 16:57:25 +03:00
metadata.result Manual merge of mysql-trunk into mysql-trunk-merge. 2010-03-24 18:03:44 +03:00
mix2_myisam.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
mix2_myisam_ucs2.result
multi_statement.result
multi_update.result Manual merge 2010-05-26 22:34:25 +08:00
multi_update2.result Fix for Bug#26890 main.multi_update times out 2008-11-19 19:17:26 +01:00
multi_update_tiny_hash.result Fixed bug#36676: multiupdate using LEFT JOIN updates only 2008-05-18 14:21:25 +05:00
myisam-blob.result
myisam-system.result WL#2110 (SIGNAL) 2009-09-10 03:18:29 -06:00
myisam.result Manual merge from mysql-trunk. 2010-04-27 13:58:21 +04:00
myisam_crash_before_flush_keys.result Backport from 6.0-codebase. 2009-11-25 16:25:01 +04:00
myisam_debug.result Addition to the fix for BUG#40827 - Killing insert-select to MyISAM can cause 2009-04-30 16:33:44 +05:30
myisampack.result Fix for a bug when backporting/merging Bug#36573 2009-11-26 13:47:55 +01:00
mysql-bug41486.result Fix for bug #43801: mysql.test takes too long, fails due to 2009-03-25 10:32:01 +03:00
mysql-bug45236.result Bug #45236: large blob inserts from mysqldump fail, possible 2009-06-10 11:24:47 +04:00
mysql.result Manual merge from mysql-next-mr. 2010-01-18 23:19:19 +03:00
mysql_client_test.result Backporting a patch for Bug#43358 from 6.0 to trunk-bugfixing. 2010-05-19 16:33:51 +04:00
mysql_comments.result
mysql_cp932.result
mysql_locale_posix.result A postfix for WL#1349 2009-10-27 08:38:32 +04:00
mysql_protocols.result
mysql_upgrade.result merge 2010-07-05 13:22:13 +03:00
mysqladmin.result
mysqlbinlog-cp932.result Bug#46010 main.ctype_gbk_binlog fails sporadically : Table 't2' already exists 2009-09-07 13:42:54 +08:00
mysqlbinlog.result Manual merge of mysql-5.1-bugteam into mysql-trunk-merge. 2010-04-03 21:35:51 +04:00
mysqlbinlog2.result merge mysql-5.1-rep+2-delivery1 --> mysql-5.1-rpl-merge 2010-01-07 15:39:11 +00:00
mysqlbinlog_base64.result Rmove RESET MASTER from have_log_bin.inc because it can cause some 2008-07-28 15:15:20 +08:00
mysqlbinlog_row.result result updates for the 'row-only' tests 2009-11-15 23:19:53 +04:00
mysqlbinlog_row_big.result Bug#43716: Test mysqlbinlog_row_big is failing, needs to be updated 2009-04-02 18:34:18 -04:00
mysqlbinlog_row_innodb.result BUG#49618: Field length stored incorrectly in binary log 2010-03-22 13:10:18 +01:00
mysqlbinlog_row_myisam.result BUG#51716 post push fix. 2010-03-12 12:42:30 +00:00
mysqlbinlog_row_trans.result merge mysql-5.1-rep+2-delivery1 --> mysql-5.1-rpl-merge 2010-01-07 15:39:11 +00:00
mysqlcheck.result backported: 2010-01-15 15:42:15 +04:00
mysqld--help-notwin.result WL#5349 Change default storage engine to InnoDB 2010-06-17 22:51:35 +02:00
mysqld--help-win.result WL#5349 Change default storage engine to InnoDB 2010-06-17 22:51:35 +02:00
mysqldump-compat.result
mysqldump-max.result manual merge 2009-02-19 18:22:28 +01:00
mysqldump-no-binlog.result Bug #34909: mysqldump returns a 0 status on error when using 2008-03-07 11:15:49 +02:00
mysqldump.result Manual merge of mysql-5.1-bugteam to mysql-trunk-merge. 2010-05-09 02:03:35 +04:00
mysqldump_restore.result Bug#40465 - mysqldump.test does no checking of dump or restore 2009-05-22 10:38:17 -04:00
mysqlhotcopy_archive.result Patch for trunk after merge from 5.1-bugteam of bug52913. 2010-06-03 11:27:27 +02:00
mysqlhotcopy_myisam.result Patch for trunk after merge from 5.1-bugteam of bug52913. 2010-06-03 11:27:27 +02:00
mysqlshow.result Check in the support for Information Schema System Table Views. Users 2010-05-25 18:44:33 -07:00
mysqlslap.result
mysqltest.result Bug #50618 Please allow 'sleep $variable' in mtr 2010-02-09 18:13:57 +01:00
named_pipe.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
ndb_default_cluster.require
negation_elimination.result
no-threads.result
no_binlog.result BUG#50780: 'show binary logs' debug assertion when binary 2010-02-05 17:51:55 +00:00
not_embedded.require
not_embedded_server.result Backport of revno ## 2617.31.1, 2617.31.3, 2617.31.4, 2617.31.5, 2009-12-05 02:02:48 +03:00
not_ndb.require
not_ndb_default.require
not_openssl.require
not_partition.require
not_partition.result fixed "engine not found" error in open_binary_frm 2009-12-23 13:06:03 +01:00
not_true.require Bug#32430: 'show innodb status' causes errors 2009-09-25 11:26:49 +02:00
not_valgrind.require
not_windows.require
null.result Patch for Bug#50511 (Sometimes wrong handling of user variables containing NULL). 2010-05-05 15:00:59 +04:00
null_key.result BUG#34945: "ref_or_null queries that are null_rejecting and have a null value crash mysql" 2008-03-03 20:35:44 +03:00
odbc.result Bug#41371 Select returns 1 row with condition "col is not null and col is null" 2009-11-03 17:54:41 +04:00
olap.result Automerge. 2009-11-06 17:54:19 +03:00
one_thread_per_connection.require
openssl_1.result merge 2010-01-29 16:54:27 +02:00
optimizer_switch_eng_cond_pushdown1.result WL#5197 "Move @@engine_condition_pushdown to @@optimizer_switch" 2010-01-06 11:54:45 +01:00
optimizer_switch_eng_cond_pushdown2.result WL#5197 "Move @@engine_condition_pushdown to @@optimizer_switch" 2010-01-06 11:54:45 +01:00
order_by.result Bug #38745: MySQL 5.1 optimizer uses filesort for ORDER BY 2010-05-31 16:52:19 +04:00
order_fill_sortbuf.result
outfile.result Bug#27145 EXTRA_ACL troubles 2009-10-19 14:58:13 +02:00
outfile_loaddata.result Bug #53088: mysqldump with -T & --default-character-set set 2010-05-07 00:41:37 +04:00
overflow.result
packet.result Bug #32223 SETting max_allowed_packet variable 2009-06-19 11:27:19 +02:00
parser.result Post-commit fixes after the push for Bug#20837 et. al. 2010-06-09 10:46:24 +02:00
parser_bug21114_innodb.result
parser_not_embedded.result Post-commit fixes after the push for Bug#20837 et. al. 2010-06-09 10:46:24 +02:00
parser_precedence.result
parser_stack.result Bug#35577 (CREATE PROCEDURE causes either crash or syntax error depending on 2008-07-14 15:41:30 -06:00
partition.result Auto-merge from mysql-trunk. 2010-05-28 09:47:58 +04:00
partition_archive.result Bug#44622: Using PARTITIONs with ARCHIVE engine reports 0 bytes in i_s.TABLES 2009-08-11 14:18:26 +02:00
partition_binlog_stmt.result Bug#51851: Server with SBR locks mutex twice on LOAD DATA 2010-03-30 22:52:45 +02:00
partition_blackhole.result
partition_bug18198.result Bug #42849: innodb crash with varying time_zone on partitioned 2009-12-13 23:29:50 +03:00
partition_charset.result
partition_column.result pre push fix of test results 2010-05-26 09:56:55 +02:00
partition_column_prune.result Initial import of WL#3726 "DDL locking for all metadata objects". 2009-11-30 18:55:03 +03:00
partition_csv.result initial merge from 5.1-mtr 2009-09-04 15:20:58 +02:00
partition_datatype.result BUG#48165, needed to introduce length restrictions on partitioning fields to ensure that no stack overruns occur 2009-10-28 01:11:17 +01:00
partition_debug_sync.result A 5.5 version of the fix for Bug #54360 "Deadlock DROP/ALTER/CREATE 2010-07-01 15:53:46 +02:00
partition_disabled.result Bug#39893: Crash if select on a partitioned table, when partitioning is disabled 2009-01-08 15:16:44 +01:00
partition_error.result Manual merge from mysql-trunk-bugfixing. 2010-06-07 12:47:04 +04:00
partition_federated.result
partition_grant.result
partition_hash.result Backport of the fix for BUG#33730 "Full table scan instead selected partitions for query more than 10 partitions" 2009-10-05 22:59:19 +02:00
partition_innodb.result Bug#54783: optimize table crashes with invalid timestamp default 2010-07-06 14:38:03 -03:00
partition_innodb_plugin.result Bug#32430: 'show innodb status' causes errors 2009-09-25 11:26:49 +02:00
partition_innodb_semi_consistent.result Bug#20837 Apparent change of isolation level during transaction 2010-06-08 19:47:10 +02:00
partition_innodb_stmt.result BUG#50670: Slave stops with error code 1644 2010-04-28 14:47:49 +02:00
partition_key_cache.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
partition_list.result Fixed Information schema for column list partitioned tables 2009-10-21 20:04:34 +02:00
partition_mgm.result Move test for bug 39559, which uses command-line mysql client 2009-04-17 16:00:53 -04:00
partition_mgm_err.result WL#3352, Introducing Column list partitioning, makes it possible to partition on most data types, makes it possible to prune on multi-field partitioning 2009-09-15 17:07:52 +02:00
partition_mgm_err2.result
partition_not_embedded.result Bug #30102 rename table does corrupt tables with partition files on failure. 2009-07-27 16:50:43 +05:30
partition_not_windows.result Removed column_list and fixed all issues relating to this change 2009-10-21 12:40:21 +02:00
partition_open_files_limit.result Bug#46922: crash when adding partitions and open_files_limit 2009-10-08 15:36:43 +02:00
partition_order.result
partition_pruning.result Manual merge of mysql-trunk into mysql-trunk-merge. 2010-03-24 18:03:44 +03:00
partition_range.result Manual merge of mysql-5.1-bugteam to mysql-trunk-merge. 2010-03-20 23:23:42 +03:00
partition_rename_longfilename.result Bug #30102 rename table does corrupt tables with partition files on failure. 2009-07-27 16:50:43 +05:30
partition_symlink.result Removed column_list and fixed all issues relating to this change 2009-10-21 12:40:21 +02:00
partition_sync.result Backport of revno: 2617.80.1 2009-12-10 14:41:41 +01:00
partition_truncate.result WL#4444 Added TRUNCATE partition support, fixes bug#19405 and bug #35111 2009-09-10 11:15:39 +02:00
partition_utf8.result BUG#49591, Fixed version string in SHOW CREATE TABLE to accomodate for column list partitioning and new function to_seconds 2009-12-17 18:39:10 +01:00
partition_windows.result Post-merge fix: Update warning number due to repositioning in the error list. 2008-10-26 15:05:24 -02:00
perror-win.result Fixed tests for windows 2010-02-24 00:22:19 -07:00
perror.result Bug#10143 Perror not showing error description 2010-02-23 17:45:49 -07:00
plugin.result minimal changes to errmst-utf8.txt (mostly whitespace) to match 6.0-codebase better 2009-12-22 12:02:52 +01:00
plugin_load.result
plugin_not_embedded.result Post-merge fix: remove unnecessary flush privileges. 2010-03-13 18:32:42 -03:00
preload.result Recommit for merging and pushing 2009-02-27 16:11:15 +02:00
profiling.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
ps.result Bug#20837 Apparent change of isolation level during transaction 2010-06-08 19:47:10 +02:00
ps_1general.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
ps_2myisam.result WL#2649 Number-to-string conversions 2010-02-11 08:17:25 +04:00
ps_3innodb.result WL#2649 Number-to-string conversions 2010-02-11 08:17:25 +04:00
ps_4heap.result WL#2649 Number-to-string conversions 2010-02-11 08:17:25 +04:00
ps_5merge.result WL#2649 Number-to-string conversions 2010-02-11 08:17:25 +04:00
ps_10nestset.result
ps_11bugs.result Bug #32124: crash if prepared statements refer to variables in the where clause 2008-10-08 14:23:53 +03:00
ps_ddl.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
ps_ddl1.result Apply and review: 2009-12-29 15:19:05 +03:00
ps_grant.result 5.0-bugteam->5.1-bugteam merge 2009-10-27 14:09:36 +04:00
ps_not_windows.result
query_cache.result Bug #51336 Assert in reload_acl_and_cache during RESET QUERY CACHE 2010-02-26 10:58:33 +01:00
query_cache_28249.result - Fix for Bug#40179 Test main.query_cache failing randomly on Pushbuild, test weakness 2008-11-28 16:45:34 +01:00
query_cache_debug.result Bug#43758 Query cache can lock up threads in 'freeing items' state 2009-06-17 16:28:11 +02:00
query_cache_disabled.result post commit fix: missing result file. 2009-10-29 17:18:09 +01:00
query_cache_merge.result Cherry-pick Bug#33362 from mysql-5.1 2008-07-24 11:14:34 -03:00
query_cache_notembedded.result Backport of: 2009-11-20 22:51:12 +03:00
query_cache_ps_no_prot.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
query_cache_ps_ps_prot.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
query_cache_with_views.result Bug#46615 Assertion in Query_cache::invalidate in INSERT in a VIEW of a MERGE table 2010-03-24 17:37:41 +01:00
raid.result
range.result Manual merge from mysql-5.1-bugteam to mysql-trunk-merge. 2010-05-11 12:27:53 +04:00
read_many_rows_innodb.result
read_only.result Merge 5.0 -> 5.1 of fix for Bug#42003 and Bug#43114 2009-03-06 15:56:17 +01:00
read_only_innodb.result Bug#33669: Transactional temporary tables do not work under --read-only 2010-03-10 10:36:40 -03:00
rename.result Patch that addresses bug #53976 "ALTER TABLE RENAME 2010-05-28 09:25:11 +04:00
renamedb.result Bug #53804: serious flaws in the alter database .. upgrade 2010-05-21 22:47:32 +04:00
repair.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
replace.result
rollback.result
round.result
row.result Bug#52124 memory leaks like a sieve in datetime, timestamp, time, date fields + warnings 2010-04-16 16:42:34 +05:00
rowid_order_innodb.result
rpl_colSize.result
rpl_extraColmaster_innodb.result
rpl_extraColmaster_myisam.result
rpl_mysqldump_slave.result bug#54935 2010-07-16 21:25:00 +03:00
schema.result Followup for Bug #54360 Deadlock DROP/ALTER/CREATE DATABASE 2010-07-02 11:54:14 +02:00
select.result Merge of mysql-trunk-bugfixing into mysql-trunk-merge. 2010-07-15 10:47:50 -03:00
select_found.result
select_safe.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
server_id.require
server_id1.require
shm.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
show_check.result Bug #55498 SHOW CREATE TRIGGER takes wrong type of metadata lock 2010-07-23 10:44:55 +02:00
show_profile.result Bug#50057: SHOW PROFILE CPU for Windows 2010-02-05 17:31:34 +01:00
signal.result Bug#31767 DROP FUNCTION name resolution 2010-02-23 11:43:26 -07:00
signal_code.result Manual resolving for the following files 2009-12-01 21:07:18 +02:00
signal_demo1.result WL#2110 (SIGNAL) 2009-09-10 03:18:29 -06:00
signal_demo2.result WL#2110 (SIGNAL) 2009-09-10 03:18:29 -06:00
signal_demo3.result Fix test results after the latest merge. 2009-10-14 15:36:55 +04:00
signal_sqlmode.result WL#2110 (SIGNAL) 2009-09-10 03:18:29 -06:00
single_delete_update.result Bug #30584: delete with order by and limit clauses does not 2010-06-23 00:32:29 +04:00
skip_grants.result
skip_log_bin.result Bug #38798 Assertion mysql_bin_log.is_open() failed in binlog_trans_log_savepos() 2008-08-29 17:20:08 +03:00
skip_name_resolve.result Bug #37168: Missing variable - skip_name_resolve 2010-03-31 16:12:37 +03:00
slave-running.result
slave-stopped.result
sp-big.result
sp-bugs.result Bug#50624: crash in check_table_access during call procedure 2010-02-13 08:35:14 -02:00
sp-code.result Manual resolving for the following files 2009-12-01 21:07:18 +02:00
sp-destruct.result Bug #51376 Assert `! is_set()' failed in 2010-03-03 10:24:53 +01:00
sp-dynamic.result WL#2110 (SIGNAL) 2009-09-10 03:18:29 -06:00
sp-error.result Bug#31767 DROP FUNCTION name resolution 2010-02-23 11:43:26 -07:00
sp-fib.result Bug#15866 Prepared for push on 5.0 2009-07-03 10:19:32 +02:00
sp-lock.result Additional test coverage for 2010-04-19 15:35:13 +02:00
sp-no-code.result Bug#33637 SHOW PROCEDURE CODE/SHOW FUNCTION CODE sp_name gives a syntax error. 2009-10-29 10:51:04 -06:00
sp-prelocking.result
sp-security.result merging from 5.1 to rep+2 starting at gca(5.1, next-mr) == build@mysql.com-20091208092611-pbno5awyb0v38hs7 2009-12-17 00:09:52 +00:00
sp-threads.result Implement new type-of-operation-aware metadata locks. 2010-02-01 14:43:06 +03:00
sp-ucs2.result backported: 2010-01-15 15:42:15 +04:00
sp-vars.result Bug#31767 DROP FUNCTION name resolution 2010-02-23 11:43:26 -07:00
sp.result Patch for Bug#21818 (Return value of ROW_COUNT() is incorrect 2010-05-14 09:28:51 +04:00
sp_gis.result
sp_notembedded.result Manual merge from mysql-trunk-merge. 2010-02-24 16:52:27 +03:00
sp_stress_case.result
sp_sync.result Patch that changes approach to how we acquire metadata 2010-06-07 11:06:55 +04:00
sp_trans.result Manual merge of mysql-5.1-bugteam to mysql-trunk-merge. 2010-02-22 00:33:11 +03:00
sp_trans_log.result Post-push fix for BUG#53259. 2010-07-04 20:35:05 +01:00
sql_mode.result Bug #21099 MySQL 5.0.22 silently creates MyISAM tables even though 2009-10-09 16:52:02 +02:00
ssl-big.result
ssl.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
ssl_8k_key.result
ssl_compress.result Patch for WL#3736: Extended Table, Column and Index Comments. 2010-02-20 13:07:32 +03:00
ssl_connect.result
status.result Backport of: 2009-11-20 23:30:00 +03:00
status2.result Bug#24289 Status Variable "Questions" gets wrong values with Stored Routines(for 5.1) 2008-12-17 17:23:21 +04:00
strict.result Manual merge. 2010-03-19 11:29:12 +03:00
strict_autoinc_1myisam.result
strict_autoinc_2innodb.result
strict_autoinc_3heap.result
subselect.result merge 2010-06-25 16:32:47 +03:00
subselect2.result
subselect3.result Manual merge of mysql-trunk into mysql-trunk-merge. 2010-03-24 18:03:44 +03:00
subselect4.result Backport of Bug#53236 Segfault in DTCollation::set(DTCollation&) 2010-06-23 08:13:34 +02:00
subselect_debug.result Bug#37627: addendum : 2008-07-07 11:43:56 +03:00
subselect_gis.result
subselect_innodb.result
subselect_notembedded.result Fix for bug #34650: Test suite without cluster fails on Mac OS X 2008-03-07 21:14:34 +03:00
sum_distinct-big.result
sum_distinct.result
symlink.result BUG#40980 - Drop table can remove another MyISAM table's 2010-04-01 18:49:02 +04:00
synchronization.result Merge 5.0 -> 5.1 2009-02-09 22:00:15 +01:00
sysdate_is_now.result
system_mysql_db.result Manual merge from mysql-trunk-merge. 2009-11-06 17:20:27 +03:00
system_mysql_db_refs.result
tablelock.result
temp_table.result Backport from mysql-6.0-codebase of: 2010-06-23 13:34:40 +02:00
testdb_only.require
timezone.result
timezone2.result Backport of a 5.0.74 fix into 5.0.72sp1: 2009-01-12 17:40:29 +01:00
timezone3.result Backport of a 5.0.74 fix into 5.0.72sp1: 2009-01-12 17:40:29 +01:00
timezone4.result
timezone_grant.result
trigger-compat.result backported: 2010-01-15 15:42:15 +04:00
trigger-trans.result fixed test suite failures in 5.1-bugteam 2008-10-07 19:54:12 +03:00
trigger.result Manual merge of mysql-5.1-bugteam to mysql-trunk-merge. 2010-05-09 02:03:35 +04:00
trigger_notembedded.result backported: 2010-01-15 15:42:15 +04:00
true.require
truncate.result Bug#42643: InnoDB does not support replication of TRUNCATE TABLE 2010-05-25 17:01:38 -03:00
truncate_coverage.result Fix for bug #46785 "main.truncate_coverage fails 2010-06-11 17:32:12 +04:00
type_binary.result Bug#52430 Incorrect key in the error message for duplicate key error involving BINARY type 2010-05-27 20:01:43 +04:00
type_bit.result Manual merge of mysql-5.1-bugteam to mysql-trunk-merge. 2010-02-22 00:33:11 +03:00
type_bit_innodb.result
type_blob.result Bug#47974 'TYPE=storage_engine' is deprecated and will be 2010-02-09 11:30:50 +01:00
type_date.result Manual merge of mysql-5.1-bugteam to mysql-trunk-merge. 2010-03-20 23:23:42 +03:00
type_datetime.result Bug#52849 [Com]: datetime index not work 2010-05-05 13:28:37 +04:00
type_decimal.result Bug#52168 decimal casting catastrophes: crashes and valgrind errors on simple casts 2010-05-28 17:30:39 +02:00
type_enum.result
type_float.result Backport of WL #2934: Make/find library for doing float/double 2009-12-22 19:23:13 +03:00
type_nchar.result
type_newdecimal-big.result
type_newdecimal.result Bug #8433: Overflow must be an error 2010-03-18 13:38:29 +03:00
type_ranges.result Mergine from mysql-next-me 2010-02-27 11:43:32 +04:00
type_set.result Bug #38701: Crash in String::append when inserting duplicate empty strings an uft8 2008-09-05 18:21:59 +03:00
type_time.result 5.1-bugteam->mysql_trunk-merge merge 2010-05-31 13:38:10 +04:00
type_timestamp.result Bug#50888 valgrind warnings in Field_timestamp::val_str 2010-03-09 15:54:12 +01:00
type_uint.result
type_varchar.result Merge next-mr -> next-4284 2009-12-16 10:48:07 +03:00
type_year.result Bug #49910: Behavioural change in SELECT/WHERE on YEAR(4) data type 2010-03-22 12:33:25 +04:00
udf.result Manual merge of mysql-trunk into mysql-trunk-merge. 2010-03-24 18:03:44 +03:00
udf_skip_grants.result
union.result Manual merge of mysql-trunk into mysql-trunk-merge. 2010-03-24 18:03:44 +03:00
unsafe_binlog_innodb.result
update.result Bug #30584: delete with order by and limit clauses does not 2010-06-23 00:32:29 +04:00
upgrade.result Bug #53804: serious flaws in the alter database .. upgrade 2010-05-21 22:47:32 +04:00
user_limits.result WL#4738 streamline/simplify @@variable creation process 2009-12-22 10:35:56 +01:00
user_var-binlog.result merge mysql-5.1-rep+2-delivery1 --> mysql-5.1-rpl-merge 2010-01-07 15:39:11 +00:00
user_var.result Patch for Bug#50511 (Sometimes wrong handling of user variables containing NULL). 2010-05-05 15:00:59 +04:00
varbinary.result Fix for Bug#43546 Several 5.0 tests do not pass MTR's --check option 2009-04-28 20:12:18 +02:00
variables-big.result Fix for Bug#43383 main.variables-big : Weak testing code and result 2009-03-26 19:12:19 +01:00
variables-notembedded.result Bug#43835: SHOW VARIABLES does not include 0 for slave_skip_errors 2009-04-06 13:42:33 +02:00
variables.result A pre-requisite patch for the fix for Bug#52044. 2010-07-27 14:25:53 +04:00
variables_community.result renaming test variables+c to variables_community, + is problematic 2010-02-11 14:26:58 +01:00
variables_debug.result Manual merge of mysql-5.1-bugteam to mysql-trunk-merge. 2010-05-24 00:41:18 +04:00
view.result A pre-requisite patch for the fix for Bug#52044. 2010-07-27 14:25:53 +04:00
view_alias.result Bug#40277: SHOW CREATE VIEW returns invalid SQL 2010-03-09 07:36:26 -03:00
view_grant.result Manual merge from mysql-trunk-merge. 2010-02-24 16:52:27 +03:00
wait_timeout.result Fix for bug#39108: Set global wait timeout within the test, not more via opt file. 2009-01-23 18:19:09 +01:00
warnings.result Bug#31767 DROP FUNCTION name resolution 2010-02-23 11:43:26 -07:00
warnings_engine_disabled.result minimal changes to errmst-utf8.txt (mostly whitespace) to match 6.0-codebase better 2009-12-22 12:02:52 +01:00
windows.require
windows.result Bug#45498: Socket variable not available on Windows 2009-09-22 08:22:07 -03:00
xa.result Merge an addition to BUG51342 5.0-bugteam -> 5.1-bugteam. 2010-03-10 19:31:22 +04:00
xml.result Bug#43183 ExctractValue() brings result list in missorder 2009-04-01 13:40:33 +05:00