mariadb/mysql-test/r
Konstantin Osipov 3b311f399d Apply and review:
3655 Jon Olav Hauglid   2009-10-19
Bug #30977 Concurrent statement using stored function and DROP FUNCTION 
           breaks SBR
Bug #48246 assert in close_thread_table

Implement a fix for:
Bug #41804 purge stored procedure cache causes mysterious hang for many
           minutes
Bug #49972 Crash in prepared statements

The problem was that concurrent execution of DML statements that
use stored functions and DDL statements that drop/modify the same
function might result in incorrect binary log in statement (and
mixed) mode and therefore break replication.

This patch fixes the problem by introducing metadata locking for
stored procedures and functions. This is similar to what is done
in Bug#25144 for views. Procedures and functions now are
locked using metadata locks until the transaction is either
committed or rolled back. This prevents other statements from
modifying the procedure/function while it is being executed. This
provides commit ordering - guaranteeing serializability across
multiple transactions and thus fixes the reported binlog problem.

Note that we do not take locks for top-level CALLs. This means
that procedures called directly are not protected from changes by
simultaneous DDL operations so they are executed at the state they
had at the time of the CALL. By not taking locks for top-level
CALLs, we still allow transactions to be started inside
procedures.

This patch also changes stored procedure cache invalidation.
Upon a change of cache version, we no longer invalidate the entire
cache, but only those routines which we use, only when a statement
is executed that uses them.

This patch also changes the logic of prepared statement validation.
A stored procedure used by a prepared statement is now validated
only once a metadata lock has been acquired. A version mismatch
causes a flush of the obsolete routine from the cache and
statement reprepare.
Incompatible changes:
1) ER_LOCK_DEADLOCK is reported for a transaction trying to access
   a procedure/function that is locked by a DDL operation in
   another connection.

2) Procedure/function DDL operations are now prohibited in LOCK
   TABLES mode as exclusive locks must be taken all at once and
   LOCK TABLES provides no way to specifiy procedures/functions to
   be locked.

Test cases have been added to sp-lock.test and rpl_sp.test.

Work on this bug has very much been a team effort and this patch
includes and is based on contributions from Davi Arnaut, Dmitry
Lenev, Magne Mæhre and Konstantin Osipov.
2009-12-29 15:19:05 +03:00
..
1st.result
alias.result Backport of Bug#27249 to mysql-next-mr 2009-11-10 18:43:43 -02:00
almost_full.result
alter_table-big.result
alter_table.result Manual merge from mysql-trunk-merge. 2009-11-06 17:20:27 +03:00
analyse.result Bug #48293: crash with procedure analyse, view with > 10 columns, 2009-10-30 11:40:44 +02:00
analyze.result
ansi.result
archive-big.result
archive.result Bug#40677 Archive tables joined on primary return no result 2009-11-25 19:29:52 +01:00
archive_bitfield.result
archive_gis.result
auto_increment.result
backup.result
bench_count_distinct.result
big_test.require
bigint.result Fix for BUG#42980 "Client doesn't set NUM_FLAG for DECIMAL and TIMESTAMP": 2009-09-30 12:25:50 +02:00
binary.result
binlog_tx_isolation.result
bool.result
bootstrap.result
bug46080.result
bug46760.result
bulk_replace.result
cache_innodb.result
case.result
case_insensitive_file_system.require
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
change_user.result
check.result
check_var_limit.require
client_xml.result
comments.result
commit_1innodb.result Backport of: 2009-12-03 18:47:20 +03:00
compare.result WL#751 Error message construction, backport 2009-10-15 17:23:43 +05:00
compress.result
concurrent_innodb_safelog.result
concurrent_innodb_unsafelog.result
connect.result
consistent_snapshot.result
constraints.result
contributors.result
count_distinct.result
count_distinct2.result
count_distinct3.result
crash_commit_before.result
create-big.result
create.result Backport of revno: 2617.76.3 2009-12-09 13:27:24 +01:00
create_not_windows.result
create_select_tmp.result
csv.result Bug#40814 CSV engine does not parse \X characters when they occur in unquoted fields 2009-12-03 17:18:43 +05:30
csv_alter_table.result
csv_not_null.result
ctype_ascii.result
ctype_big5.result
ctype_collate.result Review fixes for BUG#48161 and BUG#48447 2009-11-06 11:49:27 +01:00
ctype_cp932_binlog_row.result
ctype_cp932_binlog_stm.result backporting bug@27808 fixes 2009-10-01 19:44:53 +03:00
ctype_cp1250_ch.result
ctype_cp1251.result Backporting test for Bug#158 ENUM and SET types does not accept valid cp1251 character 2009-11-09 14:53:49 +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
ctype_euckr.result
ctype_filename.result
ctype_filesystem.result
ctype_gb2312.result
ctype_gbk.result
ctype_gbk_binlog.result
ctype_hebrew.result
ctype_latin1.result
ctype_latin1_de.result
ctype_latin2.result
ctype_latin2_ch.result
ctype_ldml.result Bug#47756 Setting 2byte collation ID with 'set names' crashes the server 2009-12-07 16:11:53 +04:00
ctype_many.result
ctype_mb.result
ctype_recoding.result WL#751 Error message construction, backport 2009-10-15 17:23:43 +05:00
ctype_sjis.result
ctype_tis620.result
ctype_uca.result
ctype_ucs.result
ctype_ucs2_def.result WL#751 Error message construction, backport 2009-10-15 17:23:43 +05:00
ctype_ujis.result
ctype_ujis_ucs2.result
ctype_utf8.result Bug#26180 Can't add columns to tables created with utf8 (regular) text indexes 2009-11-09 15:35:18 +04:00
date_formats.result
ddl_i18n_koi8r.result Bug#35427 INFORMATION_SCHEMA.TABLES.TABLE_CATALOG is NULL, should be "def" 2009-10-23 16:02:20 +05:00
ddl_i18n_utf8.result Bug#35427 INFORMATION_SCHEMA.TABLES.TABLE_CATALOG is NULL, should be "def" 2009-10-23 16:02:20 +05:00
deadlock_innodb.result
debug_sync.result merging 5.1 main -> rpl+2. Some manual work required mostly due to bug46640 2009-11-06 18:35:04 +02:00
default.result
delayed.result Manual merge from mysql-next-mr. 2009-11-02 14:10:04 +03:00
delete.result Backport of Bug#27525 to mysql-next-mr 2009-11-10 16:48:46 -02: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
distinct.result
drop-no_root.result Backporting of Bug#40128 from 6.0 to next-mr. 2009-10-09 18:52:49 +04:00
drop.result Backport of: 2009-11-20 22:51:12 +03:00
drop_debug.result Backport of: 2009-12-08 10:53:40 +03:00
empty_table.result
endspace.result
error_simulation.result
errors.result Backport the test case for Bug#31881 "A statement is not aborted immediately if an error 2009-11-21 02:06:30 +03:00
events_1.result A backport of a patch for Bug#35297. 2009-10-08 00:57:03 +04:00
events_2.result A backport of a patch for Bug#35297. 2009-10-08 00:57:03 +04:00
events_bugs.result Manual merge from mysql-next-mr. 2009-11-02 14:10:04 +03:00
events_embedded.result
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
events_scheduling.result
events_stress.result
events_time_zone.result
events_trans.result
events_trans_notembedded.result
exampledb.result
execution_constants.result
explain.result Manual merge from mysql-trunk-merge. 2009-11-06 17:20:27 +03:00
fix_priv_tables.result
flush.result Initial import of WL#3726 "DDL locking for all metadata objects". 2009-11-30 18:55:03 +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 Backport of revno ## 2617.31.1, 2617.31.3, 2617.31.4, 2617.31.5, 2009-12-05 02:02:48 +03:00
flush_read_lock_kill.result
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
fulltext.result Bug#9801 Views: imperfect error message 2009-11-02 09:31:00 -07:00
fulltext2.result
fulltext3.result
fulltext_cache.result
fulltext_distinct.result
fulltext_left_join.result
fulltext_multi.result
fulltext_order_by.result
fulltext_plugin.result
fulltext_update.result
fulltext_var.result
func_compress.result
func_concat.result
func_crypt.result
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
func_encrypt.result
func_encrypt_nossl.result
func_equal.result
func_gconcat.result
func_group.result Bug#47280 - strange results from count(*) with order by multiple 2009-10-14 10:46:50 +02:00
func_group_innodb.result
func_if.result
func_in.result Bug #44139: Table scan when NULL appears in IN clause 2009-10-05 10:27:36 +05:00
func_isnull.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
func_like.result Bug#33546: Slowdown on re-evaluation of constant expressions. 2009-12-02 00:25:51 +03:00
func_math.result Merge next-mr -> next-4284 2009-12-16 10:48:07 +03:00
func_misc.result
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
func_sapdb.result Backport to 5.6.0 2009-11-04 10:17:39 +01:00
func_set.result
func_str.result Merge from mysql-next-mr. 2009-10-23 15:22:21 +04:00
func_system.result
func_test.result Bug#30302: Tables that were optimized away are printed in the 2009-10-19 15:13:26 +04:00
func_time.result Bug#33546: Slowdown on re-evaluation of constant expressions. 2009-12-02 00:25:51 +03:00
func_timestamp.result
gcc296.result
gis-rtree.result Auto-merge. 2009-10-23 23:37:57 +05:00
gis.result automerge 2009-10-24 09:57:31 +03:00
grant.result Manual merge from mysql-trunk-merge. 2009-11-06 17:20:27 +03:00
grant2.result Merge from mysql-next-mr. 2009-10-28 10:55:44 +03: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 Manual merge from mysql-next-mr. 2009-11-02 14:10:04 +03:00
grant_cache_no_prot.result
grant_cache_ps_prot.result
grant_lowercase_fs.result Bug#41049 does syntax "grant" case insensitive? 2009-10-27 12:09:19 +04:00
greedy_optimizer.result
group_by.result Backport of: 2009-11-20 22:51:12 +03:00
group_min_max.result Merge from mysql-trunk-merge. 2009-10-19 17:36:19 +04:00
group_min_max_innodb.result
handler_innodb.result A prerequisite patch for the fix for Bug#46224 2009-12-22 19:09:15 +03:00
handler_myisam.result A prerequisite patch for the fix for Bug#46224 2009-12-22 19:09:15 +03: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
have_dynamic_loading.require
have_eucjpms.require
have_euckr.require
have_example_plugin.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
have_partition.require
have_perror.require
have_profiling.require Bug #44651 "have_community_features" variable should be renamed 2009-10-09 15:59:25 +02:00
have_query_cache.require
have_simple_parser.require
have_sjis.require
have_ssl.require
have_symlink.require
have_tis620.require
have_ucs2.require
have_udf_example.require
have_ujis.require
have_utf8.require
having.result Bug#30302: Tables that were optimized away are printed in the 2009-10-19 15:13:26 +04:00
heap.result
heap_auto_increment.result
heap_btree.result
heap_hash.result
help.result
implicit_commit.result Backport of: 2009-12-03 18:47:20 +03:00
index_merge_innodb.result Fix index_merge_innodb.result (Bug 45727). 2009-10-08 13:27:45 +04:00
index_merge_myisam.result
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 next-mr -> next-4284. 2009-12-15 22:03:56 +03:00
information_schema_chmod.result
information_schema_db.result WL#2511 - Add a new table to the Information Schema for TABLESPACE's 2009-12-07 16:22:51 +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_part.result Bug#35427 INFORMATION_SCHEMA.TABLES.TABLE_CATALOG is NULL, should be "def" 2009-10-23 16:02:20 +05:00
init_connect.result
init_file.result
innodb-autoinc-optimize.result
innodb-autoinc.result Updates for test cases from innodb-zip-ss6129. 2009-11-05 17:23:50 +04:00
innodb-consistent.result Merging Innodb plugin 1.0.5 revisions from 5.1-main from revisions 3149 to 3163 2009-10-16 17:28:02 +05:30
innodb-lock.result
innodb-replace.result
innodb-semi-consistent.result
innodb-ucs2.result
innodb.result Backport of revno ## 2617.31.1, 2617.31.3, 2617.31.4, 2617.31.5, 2009-12-05 02:02:48 +03:00
innodb_autoinc_lock_mode_zero.result
innodb_bug21704.result
innodb_bug30919.result
innodb_bug34053.result
innodb_bug34300.result Merging Innodb plugin 1.0.5 revisions from 5.1-main from revisions 3149 to 3163 2009-10-16 17:28:02 +05:30
innodb_bug35220.result
innodb_bug38231.result
innodb_bug39438.result
innodb_bug40565.result
innodb_bug42101-nonzero.result
innodb_bug42101.result
innodb_bug42419.result
innodb_bug44369.result Updates for test cases from innodb-zip-ss6129. 2009-11-05 17:23:50 +04:00
innodb_bug44571.result Merging Innodb plugin 1.0.5 revisions from 5.1-main from revisions 3149 to 3163 2009-10-16 17:28:02 +05:30
innodb_bug45357.result
innodb_bug46000.result Updates for test cases from innodb-zip-ss6129. 2009-11-05 17:23:50 +04:00
innodb_bug47777.result Updates for test cases from innodb-zip-ss6129. 2009-11-05 17:23:50 +04:00
innodb_gis.result
innodb_ignore_builtin.result
innodb_lock_wait_timeout_1.result A fix and a test case for 2009-11-03 20:45:52 +03:00
innodb_mysql.result Backport of: 2009-12-08 10:39:49 +03:00
innodb_mysql_lock.result Backport of revno: 2617.68.18 2009-12-09 16:13:00 +01:00
innodb_mysql_rbk.result
innodb_mysql_sync.result Backport of revno: 2599.169.2 2009-12-09 09:32:29 +01:00
innodb_notembedded.result
innodb_timeout_rollback.result
innodb_trx_weight.result
insert.result Manual merge from mysql-next-mr. 2009-11-02 14:10:04 +03:00
insert_notembedded.result Backport of: 2009-11-20 22:51:12 +03:00
insert_select.result
insert_update.result
ipv4_as_ipv6.result Improvements to reduce the output for better reading and more stability. 2009-11-26 09:03:04 +01:00
ipv4_as_ipv6_win.result fix for ipv6. 2009-11-30 10:49:37 +01:00
ipv6.result Reviewed patch of QA results for WL#798. 2009-11-23 17:38:42 +01:00
ipv6_win.result No more socket and no more diffs in result files. 2009-11-27 09:02:32 +01:00
is_debug_build.require
is_embedded.require
isam.result
join.result Manual merge from mysql-trunk-merge. 2009-11-06 17:20:27 +03: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
join_outer_innodb.result
key.result WL#751 Error message construction, backport 2009-10-15 17:23:43 +05:00
key_cache.result
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
loaddata.result
loaddata_autocom_innodb.result
loadxml.result test updated 2009-11-11 21:30:51 +04:00
locale.result Manual-merge from mysql-trunk-merge. 2009-11-06 12:52:45 +03:00
lock.result Backport of revno: 3702 2009-12-09 14:03:37 +01:00
lock_multi.result Backport of revno: 2617.71.1 2009-12-10 11:53:20 +01:00
lock_multi_bug38499.result
lock_multi_bug38691.result
lock_sync.result Fix for bug #45143 "All connections hang on concurrent ALTER TABLE". 2009-10-26 22:38:03 +03:00
lock_tables_lost_commit.result
log_state.result Bug #38124 "general_log_file" variable silently unset when using expression 2009-10-15 11:09:31 +02: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 merge of bug#35765 into mysql-next-mr-bugfixing 2009-11-24 12:08:04 +01:00
log_tables_debug.result
long_tmpdir.result
lowercase0.require
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
lowercase_table.result
lowercase_table2.result Backport of revno: 2617.68.3 2009-12-10 12:46:16 +01:00
lowercase_table3.result
lowercase_table_grant.result
lowercase_table_qcache.result
lowercase_utf8.result
lowercase_view.result
mdl_sync.result Backport of revno: 3690 2009-12-10 15:09:56 +01:00
merge-big.result
merge.result Backport of: 2009-12-11 15:24:23 +03:00
merge_innodb.result
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 Fix for BUG#42980 "Client doesn't set NUM_FLAG for DECIMAL and TIMESTAMP": 2009-09-30 12:25:50 +02:00
mix2_myisam.result Backport of revno ## 2617.31.1, 2617.31.3, 2617.31.4, 2617.31.5, 2009-12-05 02:02:48 +03:00
mix2_myisam_ucs2.result
multi_statement.result
multi_update.result backporting bug@27808 fixes 2009-10-01 19:44:53 +03:00
multi_update2.result
multi_update_tiny_hash.result
myisam-blob.result
myisam-system.result
myisam.result Backport of: 2009-11-20 22:51:12 +03:00
myisam_crash_before_flush_keys.result Backport from 6.0-codebase. 2009-11-25 16:25:01 +04:00
myisam_debug.result
myisampack.result Fix for a bug when backporting/merging Bug#36573 2009-11-26 13:47:55 +01:00
mysql-bug41486.result
mysql-bug45236.result
mysql.result Bug#26780: automatic vertical output for wide results 2009-11-04 13:20:02 +01:00
mysql_client_test.result
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 mysql_upgrade test fixed 2009-10-29 10:03:16 +04:00
mysqladmin.result
mysqlbinlog-cp932.result
mysqlbinlog.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
mysqlbinlog2.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
mysqlbinlog_base64.result
mysqlbinlog_row.result result updates for the 'row-only' tests 2009-11-15 23:19:53 +04:00
mysqlbinlog_row_big.result
mysqlbinlog_row_innodb.result result updates for the 'row-only' tests 2009-11-15 23:19:53 +04:00
mysqlbinlog_row_myisam.result result updates for the 'row-only' tests 2009-11-15 23:19:53 +04:00
mysqlbinlog_row_trans.result result updates for the 'row-only' tests 2009-11-15 23:19:53 +04:00
mysqlcheck.result Bug#35427 INFORMATION_SCHEMA.TABLES.TABLE_CATALOG is NULL, should be "def" 2009-10-23 16:02:20 +05:00
mysqldump-compat.result
mysqldump-max.result
mysqldump-no-binlog.result
mysqldump.result Manual merge from mysql-next-mr. 2009-11-02 14:10:04 +03:00
mysqldump_restore.result
mysqlshow.result WL#2511 - Add a new table to the Information Schema for TABLESPACE's 2009-12-07 16:22:51 +04:00
mysqlslap.result
mysqltest.result Bug #47218 mysqltest ignores "error" command inside if inside loop 2009-10-08 11:30:03 +02:00
named_pipe.result
ndb_default_cluster.require
negation_elimination.result
no-threads.result
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
not_true.require
not_valgrind.require
not_windows.require
null.result
null_key.result
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-10-30 18:59:06 +03:00
one_thread_per_connection.require
openssl_1.result
order_by.result Bug #43029: FORCE INDEX FOR ORDER BY is ignored when join 2009-10-07 18:03:42 +03:00
order_fill_sortbuf.result
outfile.result Bug#27145 EXTRA_ACL troubles 2009-10-19 14:58:13 +02:00
outfile_loaddata.result post-push fix: Preserving warning codes from mysql-next-mr. Updated 2009-10-23 10:29:59 +01:00
overflow.result
packet.result
parser.result
parser_bug21114_innodb.result
parser_not_embedded.result
parser_precedence.result
parser_stack.result
partition.result Merge next-mr -> next-4284. 2009-12-16 11:33:54 +03:00
partition_archive.result
partition_blackhole.result
partition_bug18198.result
partition_charset.result
partition_column.result BUG#49180, fixed MAXVALUE problem 2009-12-02 08:14:22 +01: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
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_disabled.result
partition_error.result Removed column_list and fixed all issues relating to this change 2009-10-21 12:40:21 +02: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 merge of bug#35765 into mysql-next-mr-bugfixing 2009-11-24 12:08:04 +01:00
partition_innodb_builtin.result
partition_innodb_plugin.result
partition_innodb_semi_consistent.result Backport of revno ## 2617.31.1, 2617.31.3, 2617.31.4, 2617.31.5, 2009-12-05 02:02:48 +03:00
partition_innodb_stmt.result
partition_list.result Fixed Information schema for column list partitioned tables 2009-10-21 20:04:34 +02:00
partition_mgm.result
partition_mgm_err.result
partition_mgm_err2.result
partition_not_embedded.result
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 Initial import of WL#3726 "DDL locking for all metadata objects". 2009-11-30 18:55:03 +03:00
partition_range.result Changed COLUMN_LIST to COLUMNS after arch review 2009-10-29 18:04:23 +01:00
partition_rename_longfilename.result
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
partition_utf8.result Fixed a few bugs in hex string generation, in call to val_str for partition expressions, also made code reusable for DEFAULT handling to fix BUG#48464 by introducing function get_cs_converted_string_value, added partition_utf8 test case for UTF8 outputs 2009-11-02 14:49:26 +01:00
partition_windows.result
perror-win.result
perror.result
plugin.result WL#4903 Plugin Service API part I 2009-11-02 21:05:42 +01:00
plugin_load.result
preload.result
profiling.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
ps.result Backport of revno ## 2617.31.1, 2617.31.3, 2617.31.4, 2617.31.5, 2009-12-05 02:02:48 +03:00
ps_1general.result Manual resolving for the following files 2009-12-01 21:07:18 +02:00
ps_2myisam.result Fix for BUG#42980 "Client doesn't set NUM_FLAG for DECIMAL and TIMESTAMP": 2009-09-30 12:25:50 +02:00
ps_3innodb.result Fix for BUG#42980 "Client doesn't set NUM_FLAG for DECIMAL and TIMESTAMP": 2009-09-30 12:25:50 +02:00
ps_4heap.result Fix for BUG#42980 "Client doesn't set NUM_FLAG for DECIMAL and TIMESTAMP": 2009-09-30 12:25:50 +02:00
ps_5merge.result Fix for BUG#42980 "Client doesn't set NUM_FLAG for DECIMAL and TIMESTAMP": 2009-09-30 12:25:50 +02:00
ps_10nestset.result
ps_11bugs.result
ps_ddl.result Apply and review: 2009-12-29 15:19:05 +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 Auto-merge from mysql-next-mr. 2009-11-12 15:13:43 +03:00
query_cache_28249.result
query_cache_debug.result
query_cache_disabled.result post commit fix: missing result file. 2009-10-29 17:18:09 +01:00
query_cache_merge.result
query_cache_notembedded.result Backport of: 2009-11-20 22:51:12 +03:00
query_cache_ps_no_prot.result Backport of: 2009-10-13 23:31:03 +04:00
query_cache_ps_ps_prot.result Backport of: 2009-10-13 23:31:03 +04:00
query_cache_with_views.result
raid.result
range.result Manual merge from mysql-trunk-merge. 2009-11-06 17:20:27 +03:00
read_many_rows_innodb.result
read_only.result
read_only_innodb.result Backport of: 2009-12-09 18:56:34 +03:00
rename.result
renamedb.result
repair.result Backport of revno: 3702 2009-12-09 14:03:37 +01:00
replace.result
rollback.result
round.result
row.result
rowid_order_innodb.result
rpl_colSize.result
rpl_extraColmaster_innodb.result
rpl_extraColmaster_myisam.result
rpl_mysqldump_slave.result BUG #8368 "mysqldump needs --slave-data option" 2009-11-04 14:31:03 +01:00
schema.result Bug #48940 MDL deadlocks against mysql_rm_db 2009-12-15 14:18:10 +01:00
select.result Bug#33546: Slowdown on re-evaluation of constant expressions. 2009-12-02 00:25:51 +03:00
select_found.result
select_safe.result
server_id.require
server_id1.require
shm.result
show_check.result Manual resolving for the following files 2009-12-01 21:07:18 +02:00
signal.result Merging mysql-next-mr-merge to mysql-next-mr. 2009-10-21 15:48:22 +05:00
signal_code.result Manual resolving for the following files 2009-12-01 21:07:18 +02:00
signal_demo1.result
signal_demo2.result
signal_demo3.result Fix test results after the latest merge. 2009-10-14 15:36:55 +04:00
signal_sqlmode.result
skip_grants.result
skip_log_bin.result
skip_name_resolve.result
slave-running.result
slave-stopped.result
sp-big.result
sp-bugs.result Bug #47412: Valgrind warnings / user can read uninitalized memory using 2009-10-26 11:55:57 +02:00
sp-code.result Manual resolving for the following files 2009-12-01 21:07:18 +02:00
sp-destruct.result
sp-dynamic.result
sp-error.result Apply and review: 2009-12-29 15:19:05 +03:00
sp-fib.result
sp-lock.result Apply and review: 2009-12-29 15:19:05 +03: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 Backport Post fix of result files after push of BUG#34227 2009-10-02 17:12:10 +08:00
sp-threads.result Backport of: 2009-12-03 23:08:27 +03:00
sp-ucs2.result # 2009-11-09 15:17:10 +04:00
sp-vars.result This is a backport of the two patches for Bug #28299: 2009-10-09 15:34:07 +02:00
sp.result Backport of revno: 3673 2009-12-10 13:37:18 +01:00
sp_gis.result
sp_notembedded.result
sp_stress_case.result
sp_trans.result Manual resolving for the following files 2009-12-01 21:07:18 +02:00
sp_trans_log.result fixing tests results: rpl_ndb_log, rpl_ndb_multi, sp_trans_log; adding replicate-ignore_server_ids specific tests 2009-10-02 16:15:54 +03: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
ssl_8k_key.result
ssl_compress.result
ssl_connect.result
status.result Backport of: 2009-11-20 23:30:00 +03:00
status2.result
strict.result post-push fix: Preserving warning codes from mysql-next-mr. Updated 2009-10-23 10:29:59 +01:00
strict_autoinc_1myisam.result
strict_autoinc_2innodb.result
strict_autoinc_3heap.result
subselect.result Bug#33546: Slowdown on re-evaluation of constant expressions. 2009-12-02 00:25:51 +03:00
subselect2.result
subselect3.result Manual merge from mysql-trunk-merge. 2009-11-06 17:20:27 +03:00
subselect4.result
subselect_debug.result
subselect_gis.result
subselect_innodb.result
subselect_notembedded.result
sum_distinct-big.result
sum_distinct.result
symlink.result
synchronization.result
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
testdb_only.require
timezone.result
timezone2.result
timezone3.result
timezone4.result
timezone_grant.result
trigger-compat.result Backport of: 2009-12-02 18:22:15 +03:00
trigger-trans.result
trigger.result Backport of: 2009-12-09 12:37:54 +03:00
trigger_notembedded.result merging 5.1 main -> rpl+2. Some manual work required mostly due to bug46640 2009-11-06 18:35:04 +02:00
true.require
truncate.result Backport of: 2009-12-11 15:24:23 +03:00
truncate_coverage.result Backport of: 2009-12-11 15:24:23 +03:00
type_binary.result WL#751 Error message construction, backport 2009-10-15 17:23:43 +05:00
type_bit.result Merging mysql-next-mr-merge to mysql-next-mr. 2009-10-21 15:48:22 +05:00
type_bit_innodb.result
type_blob.result Manual merge from mysql-next-mr. 2009-12-02 18:50:14 +03:00
type_date.result Backport of fix to bug #33629 into mysql-next-mr-bugfixing. 2009-10-13 21:50:08 +05:00
type_datetime.result Bug#30302: Tables that were optimized away are printed in the 2009-10-19 15:13:26 +04:00
type_decimal.result Fixed a test error 2009-10-31 10:48:18 +01:00
type_enum.result
type_float.result
type_nchar.result
type_newdecimal-big.result
type_newdecimal.result Manual merge from mysql-trunk-merge. 2009-11-06 17:20:27 +03:00
type_ranges.result Backport of the fix for bug #33969: Updating a text field via a 2009-11-21 20:31:00 +03:00
type_set.result
type_time.result Bug#42664: Sign ignored for TIME types when not comparing as longlong 2009-11-04 11:28:50 +01:00
type_timestamp.result BUG#48048: Deprecated constructs need removal in Betony 2009-11-11 02:02:23 +00:00
type_uint.result
type_varchar.result Merge next-mr -> next-4284 2009-12-16 10:48:07 +03:00
type_year.result
udf.result Bug#33546: Slowdown on re-evaluation of constant expressions. 2009-12-02 00:25:51 +03:00
udf_skip_grants.result
union.result Backport of Bug#33204 from mysql-pe to 2009-11-10 13:52:46 +01:00
unsafe_binlog_innodb.result
update.result Bug #47919 assert in open_table during ALTER temporary table 2009-10-23 15:09:14 +02:00
upgrade.result
user_limits.result
user_var-binlog.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
user_var.result
varbinary.result
variables+c.result
variables-big.result
variables-notembedded.result
variables.result Merge from mysql-next-mr. 2009-10-23 15:22:21 +04:00
variables_debug.result
view.result Merge next-mr -> next-4284. 2009-12-15 22:59:07 +03:00
view_grant.result Initial import of WL#3726 "DDL locking for all metadata objects". 2009-11-30 18:55:03 +03:00
wait_timeout.result
warnings.result Manual resolving for the following files 2009-12-01 21:07:18 +02:00
warnings_engine_disabled.result
windows.require
windows.result
xa.result BUG#43171 - Assertion failed: thd->transaction.xid_state.xid.is_null() 2009-10-28 19:39:08 +04:00
xml.result