mariadb/mysql-test/r
unknown c1bbfb2b67 Fixed bug #18360: Type aggregation for IN and CASE may lead to a wrong
result

The IN function aggregates result types of all expressions. It uses that 
type in comparison of left expression and expressions in right part. 
This approach works in most cases. But let's consider the case when the
right part contains both strings and integers. In that case this approach may
cause wrong results because all strings which do not start with a digit are
evaluated as 0.
CASE uses the same approach when a CASE expression is given thus it's also
affected.

The idea behind this fix is to make IN function to compare expressions with
different result types differently. For example a string in the left
part will be compared as string with strings specified in right part and
will be converted to real for comparison to int or real items in the right
part.

A new function called collect_cmp_types() is added. It collects different
result types for comparison of first item in the provided list with each 
other item in the list. 

The Item_func_in class now can refer up to 5 cmp_item objects: 1 for each
result type for comparison purposes. cmp_item objects are allocated according
to found result types. The comparison of the left expression with any
right part expression is now based only on result types of these expressions.

The Item_func_case class is modified in the similar way when a CASE
expression is specified. Now it can allocate up to 5 cmp_item objects
to compare CASE expression with WHEN expressions of different types.
The comparison of the CASE expression with any WHEN expression now based only 
on result types of these expressions.



sql/item.cc:
  Cleaned up an outdated comment.
sql/item_cmpfunc.cc:
      Fixed bug #18360: Type aggregation for IN and CASE may lead to a wrong result
      A new function called collect_cmp_types() is added. It collects different
      result types for comparison of first item in the provided list with each 
      other item in the list. 
      The Item_func_in class now can refer up to 5 cmp_item objects: 1 for each
      result type for comparison purposes. cmp_item objects are allocated according
      to found result types. The comparison of the left expression with any
      right part expression is now based only on result types of these expressions.
      The Item_func_case class is modified in the similar way when a CASE
      expression is specified. Now it can allocate up to 5 cmp_item objects
      to compare CASE expression with WHEN expressions of different types.
      The comparison of the CASE expression with any WHEN expression now based only 
      on result types of these expressions.
sql/item_cmpfunc.h:
      Fixed bug#18360: Type aggregation for IN and CASE may lead to a wrong result
      The Item_func_in class now can refer up to 5 cmp_item objects.
      The Item_func_case class is modified in the similar way.
sql/opt_range.cc:
      Fixed bug #18360: Type aggregation for IN and CASE may lead to a wrong
      resultSmall code changes due to changes in Item_func_in class.
mysql-test/t/view.test:
  Added a test comment
mysql-test/t/func_in.test:
  Added a test case for bug#18360: Type aggregation for IN and CASE may lead to a wrong
  result
mysql-test/r/func_in.result:
  Added a test case for bug#18360: Type aggregation for IN and CASE may lead to a wrong
  result
2006-09-26 20:52:54 +04:00
..
alias.result
alter_table.result Bug#18775 - Temporary table from alter table visible to other threads 2006-08-03 08:12:56 +02:00
analyse.result Merge sunlight.local:/local_work/tmp_merge-5.0-opt-mysql 2006-07-30 00:33:24 +04:00
analyze.result Re-apply missing changeset, orignally pushed by elliot 2006-06-06 14:21:07 +03:00
ansi.result Update test results for 5.1 2006-05-10 20:39:26 +02:00
archive.result After merge fixes. 2006-07-06 15:38:47 +02:00
archive_bitfield.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
archive_gis.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
auto_increment.result Move test that requires innodb to "mysql_innodb" 2006-09-01 16:51:37 +02:00
backup.result Period removal for warning message. 2006-08-15 01:20:34 -07:00
bench_count_distinct.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
big_test.require
bigint.result Merge sunlight.local:/local_work/tmp_merge-5.0-opt-mysql 2006-07-30 00:33:24 +04:00
binary.result Merge neptunus.(none):/home/msvensson/mysql/bug10460/my51-bug10460 2006-03-06 11:39:36 +01:00
binlog_row_binlog.result Updated row result, and fix for Windows build. 2006-08-14 03:26:53 -07:00
binlog_row_blackhole.result Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-5.1-opt 2006-08-01 09:24:19 +04:00
binlog_row_ctype_cp932.result BUG#17780: Incorrect result file. (Test for that part is extra/binlog_tests/binlog_row_ctype_cp932.test) 2006-03-01 16:48:13 +01:00
binlog_row_ctype_ucs.result WL#3023 (RBR: Use locks in a statement-like manner): 2006-02-24 16:19:55 +01:00
binlog_row_drop_tmp_tbl.result Bug#18280 (RBR: Extreneous maps when writing to general_log and slow_log): 2006-03-17 18:11:07 +01:00
binlog_row_innodb_stat.result
binlog_row_insert_select.result Merge mysql.com:/home/bkroot/mysql-5.1-new 2006-03-03 09:57:42 +01:00
binlog_row_mix_innodb_myisam.result fixes in test results (using # for positions in SHOW BINLOG EVENTS). 2006-07-09 21:11:52 +02:00
binlog_stm_binlog.result Removed bdb test cases. 2006-08-10 18:29:25 -07:00
binlog_stm_blackhole.result Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-5.1-opt 2006-08-01 09:24:19 +04:00
binlog_stm_ctype_cp932.result Fix to not replicate mysql.event table 2006-03-09 15:59:29 +01:00
binlog_stm_ctype_ucs.result BUG#16217 merge 2006-02-15 02:19:42 +02:00
binlog_stm_drop_tmp_tbl.result
binlog_stm_innodb_stat.result
binlog_stm_insert_select.result another cleanup patch for removing tables before tests start. 2006-02-27 13:27:25 -08:00
binlog_stm_mix_innodb_myisam.result fixes after merge. Updates to test's results. 2006-07-10 18:41:03 +02:00
bool.result
bulk_replace.result
case.result Merge polly.local:/tmp/20924/bug20294/my50-bug20294 2006-09-13 16:00:15 +04:00
case_sensitive_file_system.require Bugs#17647: Trouble with "create database" 2006-05-04 11:55:09 +05:00
cast.result Merge bk-internal.mysql.com:/data0/bk/mysql-5.1 2006-08-15 17:58:39 +02:00
check.result
check_var_limit.require
client_xml.result
comments.result
compare.result Bug #21159: Optimizer: wrong result after AND with different data types 2006-08-15 10:13:17 +03:00
compress.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
connect.result
consistent_snapshot.result
constraints.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
contributors.result Added new show contributors command. 2006-05-02 17:53:26 -07:00
count_distinct.result
count_distinct2.result
count_distinct3.result
crash_commit_before.result Bug#19535 mysql-test-run cannot handle crashing test cases 2006-07-20 13:23:45 +02:00
create.result merge fixes 2006-09-18 18:30:51 +04:00
create_not_windows.result Fix for bug#16532 mysql server assert in debug if table definition is removed 2006-07-25 14:52:24 +02:00
create_select_tmp.result Merge mysql.com:/home/mydev/mysql-5.1 2006-02-10 20:00:22 +01:00
csv.result Merge rolltop.ignatz42.dyndns.org:/mnt/storeage/mysql-5.0-maint_11972 2006-08-24 15:03:33 -04:00
ctype_big5.result
ctype_collate.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
ctype_cp932_binlog_row.result WL#3023 (RBR: Use locks in a statement-like manner): 2006-02-24 16:19:55 +01:00
ctype_cp932_binlog_stm.result Post-merge fixes after merging mysql-5.0 with mysql-5.1-new 2006-03-22 00:47:36 +01:00
ctype_cp1250_ch.result Merge pgalbraith@bk-internal.mysql.com:/home/bk/mysql-5.0 2006-08-16 10:05:24 -07:00
ctype_cp1251.result
ctype_create.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
ctype_eucjpms.result Bug#15376: Unassigned multibyte codes are converted to U+0000 2006-03-23 14:03:39 +04:00
ctype_euckr.result
ctype_filename.result bug#17870 Table names conflict with Windows device names 2006-04-11 18:16:14 +05:00
ctype_gb2312.result
ctype_gbk.result
ctype_latin1.result Bug#18396 Identifiers: Byte with value 255 not allowed 2006-06-06 22:13:30 +05:00
ctype_latin1_de.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
ctype_latin2.result
ctype_latin2_ch.result Cleanup test cases that leaves "stuff" behind 2006-04-18 18:10:47 +02:00
ctype_many.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
ctype_mb.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
ctype_recoding.result Fix merge problems; work around disparate "ls" behaviors. 2006-09-06 14:23:39 -04:00
ctype_sjis.result Merge mysql.com:/data0/mysqldev/my/mysql-5.0.22-release 2006-05-24 14:37:18 +02:00
ctype_tis620.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
ctype_uca.result
ctype_ucs.result Merge zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.0-maint 2006-09-05 13:52:06 -04:00
ctype_ucs2_def.result mysqld --collation-server=xxx --character-set-server=yyy 2006-08-11 13:19:44 +05:00
ctype_ujis.result Merge mysql.com:/usr/home/bar/mysql-5.0 2006-03-23 14:14:32 +04:00
ctype_utf8.result Merge maint2.mysql.com:/data/localhome/tsmith/bk/mrg50/50 2006-09-13 09:03:52 +02:00
date_formats.result Merge bodhi.local:/opt/local/work/tmp_merge 2006-08-12 21:06:51 +04:00
default.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
delayed.result Bug #20195: INSERT DELAYED with auto_increment is assigned wrong values 2006-06-13 18:18:32 +03:00
delete.result Merge macbook.gmz:/Users/kgeorge/mysql/work/B21392-4.1-opt 2006-09-04 18:45:48 +03:00
derived.result A fix and a test case for Bug#21002 "Derived table not selecting from a 2006-07-19 22:33:19 +04:00
dirty_close.result
distinct.result Merge lamia.home:/home/timka/mysql/src/5.0-bug-21456 2006-08-29 16:39:09 +03:00
drop.result Merge mockturtle.local:/home/dlenev/src/mysql-5.0-bg21216-2 2006-08-21 12:28:35 +04:00
empty_table.result
endspace.result
errors.result
events.result fix build 2006-09-08 00:49:37 +02:00
events_bugs.result fix build 2006-09-08 00:49:37 +02:00
events_grant.result fix for bug#16992 (Events: Information_schema troubles) 2006-06-22 13:01:08 +02:00
events_logs_tests.result WL#3337 (Event scheduler new architecture) 2006-09-01 13:08:44 +02:00
events_microsec.result fix for bug #17619 Scheduler race conditions 2006-05-22 20:46:13 +02:00
events_restart_phase1.result WL#3337 (Event scheduler new architecture) 2006-09-01 13:08:44 +02:00
events_restart_phase2.result WL #3337 (Events new architecture) 2006-07-13 10:59:58 +02:00
events_restart_phase3.result WL#3337 (Event scheduler new architecture) 2006-09-01 13:08:44 +02:00
events_scheduling.result WL#3337 (Event scheduler new architecture) 2006-09-01 13:08:44 +02:00
events_stress.result WL#3337 (Event scheduler new architecture) 2006-09-01 13:08:44 +02:00
exampledb.result Don't use row level logging on optimize or repair table. 2006-05-05 20:08:40 +03:00
explain.result Post-merge fixes 2006-06-09 12:27:28 -07:00
federated.result Merge pgalbraith@bk-internal.mysql.com:/home/bk/mysql-5.1-engines 2006-08-15 09:02:53 -07:00
federated_archive.result
federated_bug_13118.result
federated_transactions.result test result changes (non-functional) for 5.1-5.0 merge 2006-08-16 17:16:36 -07:00
flush.result More DBUG statements 2006-05-24 17:21:35 +03:00
flush_block_commit.result
flush_read_lock_kill.result
flush_table.result
foreign_key.result
fulltext.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
fulltext2.result BUG#19580 - FULLTEXT search produces wrong results on UTF-8 columns 2006-05-29 16:46:46 +05:00
fulltext_cache.result
fulltext_distinct.result Bug #19498: Inconsistent support for DEFAULT in TEXT columns 2006-07-18 16:04:18 -07:00
fulltext_left_join.result Bug#14708: Inconsistent treatment of NULLs in LEFT JOINed FULLTEXT matching without index 2006-06-16 09:49:18 +02:00
fulltext_multi.result
fulltext_order_by.result
fulltext_update.result Bug #19498: Inconsistent support for DEFAULT in TEXT columns 2006-07-18 16:04:18 -07:00
fulltext_var.result
func_compress.result Merge bodhi.local:/opt/local/work/tmp_merge 2006-08-12 21:06:51 +04:00
func_concat.result Many files: 2006-06-15 01:48:41 +04:00
func_crypt.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
func_date_add.result
func_default.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
func_des_encrypt.result
func_encrypt.result BUG#14940: Post-merge fixes 2006-07-30 18:25:57 +04:00
func_encrypt_nossl.result
func_equal.result
func_gconcat.result Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-09-18 12:57:20 +02:00
func_group.result Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-09-18 12:57:20 +02:00
func_group_innodb.result merge fixes 2006-09-18 18:30:51 +04:00
func_if.result Merge polly.local:/tmp/20924/bug20294/my50-bug20294 2006-09-13 16:00:15 +04:00
func_in.result Fixed bug #18360: Type aggregation for IN and CASE may lead to a wrong 2006-09-26 20:52:54 +04:00
func_isnull.result
func_like.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
func_math.result Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-5.1-opt 2006-08-01 09:24:19 +04:00
func_misc.result Merge siva.hindu.god:/usr/home/tim/m/bk/beef-50 2006-08-23 18:27:34 -06:00
func_op.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
func_regexp.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
func_sapdb.result Merge chilla.local:/home/mydev/mysql-5.0-ateam 2006-07-06 13:18:00 +02:00
func_set.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
func_str.result merge fixes 2006-09-18 18:30:51 +04:00
func_system.result Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-5.1-opt 2006-08-01 09:24:19 +04:00
func_test.result Merge polly.local:/tmp/20924/bug20294/my50-bug20294 2006-09-13 16:00:15 +04:00
func_time.result merge fixes 2006-09-18 18:30:51 +04:00
func_timestamp.result #19409: Test 'func_timestamp' fails on Windows x64 2006-06-22 20:50:38 +02:00
gcc296.result
gis-rtree.result Merge bodhi.local:/opt/local/work/tmp_merge 2006-08-12 21:06:51 +04:00
gis.result Fix for the failing gis.test 2006-08-18 22:29:35 +05:00
grant.result Fix bad manual merge. 2006-09-05 16:28:31 -04:00
grant2.result Merge zim.(none):/home/brian/mysql/dep-5.0 2006-08-14 15:24:29 -07:00
grant3.result
grant_cache.result SHOW STATUS does not anymore change local status variables (except com_show_status). Global status variables are still updated. 2006-06-20 13:20:32 +03:00
greedy_optimizer.result
group_by.result Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-09-18 12:57:20 +02:00
group_min_max.result Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-5.1-opt 2006-08-01 09:24:19 +04:00
group_min_max_innodb.result Move innodb dependent tests to group_min_max_innodb 2006-05-22 14:10:02 +02:00
handler.result
have_archive.require
have_big5.require
have_binlog_format_row.require
have_binlog_format_statement.require
have_blackhole.require
have_compress.require
have_cp932.require
have_cp1250_ch.require
have_crypt.require
have_csv.require
have_debug.require
have_eucjpms.require
have_euckr.require
have_exampledb.require
have_federated_db.require
have_gb2312.require
have_gbk.require
have_geometry.require
have_innodb.require
have_latin2_ch.require Bug#17374: select ... like 'A%' operator fails to find value on columuns with key 2006-03-20 16:28:25 +04:00
have_met_timezone.require
have_moscow_leap_timezone.require
have_ndb.require
have_ndb_extra.require
have_ndb_status_ok.require Ad file "have_ndb_status_ok.require" 2006-04-24 13:25:50 +02:00
have_ndbapi_examples.require Fixed ndbapi-examples, and added tests for mysql-test-run.pl 2006-09-01 15:14:50 +02:00
have_openssl.require
have_outfile.require
have_partition.require Bug# 16718 partitioning support status variable has incorrect name 2006-01-23 08:42:32 -06:00
have_perror.require Bug#20145 perror segfault when call it with error nr 2006-07-24 18:05:00 +02:00
have_query_cache.require
have_raid.require
have_row_based.require
have_sjis.require
have_symlink.require
have_tis620.require
have_ucs2.require
have_udf.require Bug#18564 Test failure due to test not checking preconditions 2006-04-12 15:13:16 +02:00
have_udf_example.require Add test to mysql-test-run.pl to see if the udf_example.so is availble. Set envioronment variable UDF_EXAMPLE_LIB if it is. 2006-04-27 16:32:40 +02:00
have_ujis.require
having.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
heap.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
heap_auto_increment.result
heap_btree.result Merge zippy.cornsilk.net:/home/cmiller/work/mysql/mysql-5.0-maint 2006-09-05 17:47:17 -04:00
heap_hash.result Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-09-18 12:57:20 +02:00
help.result
im_cmd_line.result Post-merge fixes. 2006-08-30 23:09:47 +04:00
im_daemon_life_cycle.result Merge bodhi.local:/opt/local/work/mysql-5.0-runtime-safemerge 2006-08-30 03:00:19 +04:00
im_instance_conf.result Fix im_instance_conf.imtest failure on AIX and HPUX. 2006-08-31 18:48:50 +04:00
im_life_cycle.result Merge bodhi.local:/opt/local/work/mysql-5.0-runtime-safemerge 2006-08-30 03:00:19 +04:00
im_options.result Fixed warning message breakage. 2006-08-13 22:28:41 -07:00
im_utils.result Merge bodhi.local:/opt/local/work/mysql-5.0-runtime-safemerge 2006-08-30 03:00:19 +04:00
index_merge.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
index_merge_innodb.result BUG#21277: Wrong results in index_merge queries: 2006-08-21 17:03:07 +04:00
index_merge_innodb2.result
index_merge_ror.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
index_merge_ror_cpk.result
information_schema.result Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-09-18 12:57:20 +02:00
information_schema_chmod.result Bug#18474 Unlistable directories yield no info from information_schema, part2 2006-05-04 17:47:25 +02:00
information_schema_db.result Merge bk-internal.mysql.com:/data0/bk/tmp_reg 2006-08-17 17:19:41 +02:00
information_schema_inno.result WL#2257 REFERENTIAL_CONSTRAINTS view 2006-05-02 16:31:39 +05:00
information_schema_part.result BUG#20340: NODEGROUP wrong field type in information schema 2006-07-22 11:27:45 -04:00
init_connect.result A fix and a test case for Bug#17843 "Certain stored procedures fail to 2006-07-04 23:46:15 +04:00
init_file.result A fix and a test case for Bug#17843 "Certain stored procedures fail to 2006-07-04 23:46:15 +04:00
innodb-big.result
innodb-deadlock.result
innodb-lock.result
innodb-replace.result
innodb.result Applied innodb-5.1-ss677, -ss680, -ss713, and -ss720 snapshots. 2006-08-15 01:42:57 +02:00
innodb_cache.result WL#1563 - Modify MySQL to support fast CREATE/DROP INDEX 2006-01-23 12:17:05 +01:00
innodb_concurrent.result This patch removes the remaining TYPE= code from MySQL. It cleans up a number of tests where it was being called still (and failing). Also I cleaned up all of the extra scripts so that they now work. 2006-02-12 13:26:30 -08:00
innodb_gis.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
innodb_handler.result
innodb_mysql.result Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-09-18 12:57:20 +02:00
innodb_notembedded.result Fixes to embedded server to be able to run tests with it 2006-02-24 18:34:15 +02:00
innodb_unsafe_binlog.result Applied innodb-5.1-ss475 snapshot. 2006-04-23 12:48:31 +04:00
insert.result BUG#14770 - LOAD DATA INFILE doesn't respect default values for 2006-08-02 17:15:50 +05:00
insert_select.result Merge lamia.home:/home/timka/mysql/src/5.0-bug-21774-sm 2006-09-13 15:22:50 +03:00
insert_update.result merge fixes 2006-09-18 18:30:51 +04:00
is_debug_build.require
isam.result
join.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
join_crash.result
join_nested.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
join_outer.result Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-09-18 12:57:20 +02:00
join_outer_innodb.result Update test results 2006-06-11 09:04:23 +02:00
key.result BUG#14770 - LOAD DATA INFILE doesn't respect default values for 2006-08-02 17:15:50 +05:00
key_cache.result Added --pipe option for faster compile 2006-06-06 20:21:36 +03:00
key_diff.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
key_primary.result
keywords.result Bug#19939 2006-07-20 12:54:01 -07:00
kill.result after merge 2006-03-06 23:43:47 +01:00
limit.result Merge timka@10.100.64.80:/home/timka/mysql/src/4.1-bug-21787 2006-09-01 14:29:27 +02:00
loaddata.result This changeset is largely a handler cleanup changeset (WL#3281), but includes fixes and cleanups that was found necessary while testing the handler changes 2006-06-04 18:52:22 +03:00
loaddata_autocom_innodb.result Post-merge fixes: 2006-09-13 15:37:35 -06:00
loaddata_autocom_ndb.result Post-merge fixes: 2006-09-13 15:37:35 -06:00
lock.result Add a test case for Bug#18884 "lock table + global read lock = crash" 2006-07-08 00:26:18 +04:00
lock_multi.result After merge fix 2006-07-04 12:34:23 +02:00
lock_tables_lost_commit.result
log_state.result Fix hardcoded /tmp path (which causes problems when running multiple 2006-07-04 22:37:32 +02:00
log_tables.result Fixed warning message breakage. 2006-08-13 22:28:41 -07:00
lowercase0.require
lowercase2.require
lowercase_fs_off.result Bugs#17647: Trouble with "create database" 2006-05-04 11:55:09 +05:00
lowercase_table.result
lowercase_table2.result post-merge fix 2006-06-14 10:54:56 +05:00
lowercase_table3.result
lowercase_table_grant.result Fix for BUG#9412: Triggers: should have trigger privilege. 2006-02-01 13:28:45 +03:00
lowercase_table_qcache.result
lowercase_view.result
merge.result Merge govinda.patg.net:/home/patg/mysql-build/mysql-5.0-holyfoot 2006-08-08 09:01:32 -07:00
metadata.result Bug#17048 CREATE TABLE ... SELECT truncate values 2006-05-13 13:13:05 +05:00
multi_statement.result
multi_update.result Updated row result, and fix for Windows build. 2006-08-14 03:26:53 -07:00
myisam-blob.result
myisam-system.result Added support for key_block_size for key and table level (WL#602) 2006-05-03 15:59:17 +03:00
myisam.result Fix running tests suite with non standard tmp dir. 2006-08-25 10:46:14 +02:00
mysql.result Merge zippy.cornsilk.net:/home/cmiller/work/mysql/bug21618/my50-bug21618 2006-09-14 09:56:06 -04:00
mysql_client_test.result
mysql_protocols.result
mysqlbinlog.result BUG#14157: utf8 encoding in binlog without set character_set_client 2006-05-31 12:51:21 +02:00
mysqlbinlog2.result BUG#16217 forced to introduce a separate mysql client command to adopt its 2006-02-09 16:23:09 +02:00
mysqlbinlog_base64.result Fix test cases to work with non-standard --vardir. 2006-02-22 10:07:54 +01:00
mysqlcheck.result Manual merge 5.0->5.1. Post-merge fixes. 2006-08-14 13:27:11 +04:00
mysqldump-max.result Merge rama.(none):/home/jimw/my/tmp_merge 2006-07-28 15:51:48 -07:00
mysqldump.result Merge rolltop.ignatz42.dyndns.org:/mnt/storeage/bug21424/my50-bug21424 2006-09-14 14:57:11 -04:00
mysqlshow.result Manual merge 5.0->5.1. Post-merge fixes. 2006-08-14 13:27:11 +04:00
mysqlslap.result Bug#18012 mysqlslap fails if querystring starts with delimiter 2006-04-11 22:23:16 +02:00
mysqltest.result Manual merge 5.0->5.1. Post-merge fixes. 2006-08-14 13:27:11 +04:00
ndb_alter_table.result Added flag to detect renaming of fields (not supported as fast alter table for ndbcluster): added test case 2006-06-14 11:38:55 +02:00
ndb_alter_table2.result Fixed timeing problem by ignoring failures and results from first select after table definition change 2006-04-19 12:21:33 +03:00
ndb_alter_table3.result ndb: now no difference in behaviour between row and statement based 2006-05-04 18:26:36 +02:00
ndb_autodiscover.result
ndb_autodiscover2.result
ndb_autodiscover3.result Bug #19395 mysqld does not always detect cluster shutdown 2006-05-18 23:38:07 +02:00
ndb_basic.result Manual merge 5.0->5.1. Post-merge fixes. 2006-08-14 13:27:11 +04:00
ndb_binlog_basic.result wl#3023 ndb to return correct tables for initial table maps 2006-03-11 06:58:48 +01:00
ndb_binlog_basic2.result WL#2977 and WL#2712 global and session-level variable to set the binlog format (row/statement), 2006-02-25 22:21:03 +01:00
ndb_binlog_ddl_multi.result BUG#18976 test workaround 2006-04-13 15:16:02 +02:00
ndb_binlog_discover.result After ndbd nodes has been restarted the mysqld's will enter "read only" mode until they are fully connected again. Wait in a loop until 2006-07-20 20:14:13 +02:00
ndb_binlog_ignore_db.result Bug#19995 (Extreneous table maps generated for statements that do not generate rows): 2006-05-31 19:21:52 +02:00
ndb_binlog_multi.result BUG#20677: Sporadic failure of test case 'ndb_binlog_multi'. 2006-06-25 08:59:44 +02:00
ndb_bitfield.result BUG#19010: Fix issues with that ALTER TABLE from auto-partitioned NDB table doesn't work unless primary key exists on table. 2006-05-10 12:53:40 -04:00
ndb_blob.result Merge pnousiainen@bk-internal.mysql.com:/home/bk/mysql-5.0 2006-05-21 21:58:00 +02:00
ndb_blob_partition.result Many files: 2006-06-27 18:35:10 +02:00
ndb_cache.result
ndb_cache2.result
ndb_cache_multi.result Cleanup testcases 2006-05-31 23:34:28 +02:00
ndb_cache_multi2.result Bug#16795 ndb_cache_multi2 2006-02-27 10:29:55 +01:00
ndb_charset.result WL#1563 - Modify MySQL to support fast CREATE/DROP INDEX 2006-01-23 12:17:05 +01:00
ndb_condition_pushdown.result sql_base.cc, ndb_condition_pushdown.result, opt_range.cc: 2006-08-30 22:11:23 +04:00
ndb_config.result After merge fixes 2006-05-04 06:28:24 +03:00
ndb_config2.result Fixed compiler warnings 2006-05-04 19:39:47 +03:00
ndb_database.result wl2325, distribution of schema operations between mysql servers 2006-02-01 01:12:11 +01:00
ndb_dd_advance.result Bug#20841 mysqldump fails to store right info with --compatible=mysql40 option 2006-08-24 14:27:57 +02:00
ndb_dd_advance2.result Bug#20841 mysqldump fails to store right info with --compatible=mysql40 option 2006-08-24 14:27:57 +02:00
ndb_dd_backuprestore.result Merge neptunus.(none):/home/msvensson/mysql/my51-m-bug20841 2006-08-24 15:07:57 +02:00
ndb_dd_basic.result Bug#20841 mysqldump fails to store right info with --compatible=mysql40 option 2006-08-24 14:27:57 +02:00
ndb_dd_ddl.result ndb - bug#20053 2006-06-26 15:08:09 +02:00
ndb_dd_disk2memory.result Bug#20841 mysqldump fails to store right info with --compatible=mysql40 option 2006-08-24 14:27:57 +02:00
ndb_dd_dump.result fix test result after BUG#20073 fix 2006-06-20 14:24:52 +10:00
ndb_default_cluster.require Bug #20820 auto inc table not handled correctly when restored from cluster backup 2006-07-06 18:50:44 +02:00
ndb_gis.result BUG#14940: Post-merge fixes 2006-07-30 18:25:57 +04:00
ndb_grant.result
ndb_index.result
ndb_index_ordered.result
ndb_index_unique.result Merge bk-internal.mysql.com:/home/bk/mysql-5.1-new 2006-06-04 21:05:22 +03:00
ndb_insert.result Merge mysql.com:/usr/local/home/marty/MySQL/mysql-5.0 2006-03-28 13:28:34 +02:00
ndb_limit.result
ndb_load.result Fix test cases to work with non-standard --vardir. 2006-02-22 10:07:54 +01:00
ndb_loaddatalocal.result Bug #19493 NDB does not ignore duplicate keys when using LOAD DATA LOCAL 2006-06-14 20:16:32 +02:00
ndb_lock.result bug #18184 SELECT ... FOR UPDATE does not work..: Updated test result file 2006-08-15 15:49:31 +02:00
ndb_minmax.result
ndb_multi.result Bug #17414 ndb schema distribution functionality does not work on mysql servers without binlog 2006-02-16 00:30:56 +01:00
ndb_multi_row.result removing the usage if the ndb local dict cache to adress the 241 errors we get now and then 2006-05-04 13:58:17 +02:00
ndb_partition_error.result Many files: 2006-06-27 18:35:10 +02:00
ndb_partition_key.result Bug#21862 Misleading error message 1490: "A PRIMARY KEY need to include all fields..." 2006-08-31 13:43:26 +05:00
ndb_partition_list.result Many files: 2006-06-27 18:35:10 +02:00
ndb_partition_range.result BUG#20340: NODEGROUP wrong field type in partitions information schema table 2006-07-22 13:37:14 -04:00
ndb_read_multi_range.result Fix for bug #21059 Server crashes on join query with large dataset with NDB tables: added more tests 2006-08-09 14:32:56 +02:00
ndb_rename.result Bug #16997 Table rename that changes database does not rename indexes: Moved index tables to system database 2006-05-31 10:28:42 +02:00
ndb_replace.result Merge mysql.com:/home/dlenev/mysql-5.0-bg18437-3 2006-07-02 02:12:53 +04:00
ndb_restore.result removed alter table partition error test since it cannot be made predictable... name will change of created file 2006-07-07 00:18:01 +02:00
ndb_restore_compat.result ndb: break out ndb backup compatability test, so that it can be disabled on mac 2006-04-26 01:11:40 +02:00
ndb_restore_partition.result Bug #18595 repeated create, insert, drop can cause MySQL table definition cache to corrupt 2006-06-14 12:21:18 +02:00
ndb_subquery.result
ndb_temporary.result Fix results due to change in SHOW CREATE TABLE output 2006-02-17 14:41:57 -08:00
ndb_transaction.result
ndb_trigger.result Fix for bug#18437 "Wrong values inserted with a before update trigger on 2006-07-02 01:51:10 +04:00
ndb_truncate.result Bug #18864 TRUNCATE TABLE doesn't reset AUTO_INCREMENT value on ndb table 2006-06-02 07:26:45 +02:00
ndb_types.result
ndb_update.result WL#1563 - Modify MySQL to support fast CREATE/DROP INDEX 2006-01-23 12:17:05 +01:00
ndb_view.result Bug #17206 Update through VIEW is not working 2006-02-08 18:08:18 +01:00
ndbapi.result Removed absolute path 2006-09-01 16:14:59 +02:00
negation_elimination.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
not_as_root.require Bug#17002 mysql-test-run as root user 2006-04-24 10:21:09 +02:00
not_embedded.require
not_embedded_server.result Merge bk-internal.mysql.com:/data0/bk/mysql-5.1-runtime 2006-09-06 14:35:27 +02:00
not_ndb.require
not_ndb_default.require Update 'abort_not_supported_test' to print a reason why the test was aborted 2006-07-19 14:25:52 +02:00
not_openssl.require
not_row_based.require
not_valgrind.require WL#3337 (Events new architecture) 2006-07-17 16:52:45 +02:00
not_windows.require Update 'abort_not_supported_test' to print a reason why the test was aborted 2006-07-19 14:25:52 +02:00
null.result BUG#14770 - LOAD DATA INFILE doesn't respect default values for 2006-08-02 17:15:50 +05:00
null_key.result BUG#14770 - LOAD DATA INFILE doesn't respect default values for 2006-08-02 17:15:50 +05:00
odbc.result Merge macbook.gmz:/Users/kgeorge/mysql/work/B14553-4.1-opt 2006-07-10 16:44:05 +03:00
olap.result Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-09-18 12:57:20 +02:00
openssl_1.result Bug#20411: "GRANT ... REQUIRE ISSUER nnn AND SUBJECT mmm" fails to require both 2006-08-22 14:29:48 +02:00
openssl_2.result
order_by.result Bug #21302: Result not properly sorted when using an ORDER BY on a second table in a join 2006-08-15 15:48:49 +03:00
order_fill_sortbuf.result
outfile.result merge fixies BUG#10418 4.1 -> 5.0 2006-05-12 12:31:22 +02:00
overflow.result
packet.result
partition.result Merge maint2.mysql.com:/data/localhome/tsmith/bk/g51 2006-09-04 23:05:17 +02:00
partition_02myisam.result Many files: 2006-06-15 16:51:24 +02:00
partition_03ndb.result
partition_charset.result Bug#14527: Partitions: table unreadable if partition name = c-cedilla 2006-03-02 12:25:02 +04:00
partition_error.result Merge bk-internal.mysql.com:/data0/bk/mysql-5.1 2006-06-22 01:25:57 +02:00
partition_grant.result Fix a test suite failure. 2006-08-14 19:05:35 +04:00
partition_hash.result BUG20733: Bug in partition pruning with zerofill field 2006-07-20 05:28:16 -04:00
partition_innodb.result BUG#20852: Using update with full table scan causes mysqld to enter an eternal loop 2006-07-12 20:38:17 -04:00
partition_list.result BUG20733: Bug in partition pruning with zerofill field 2006-07-20 05:28:16 -04:00
partition_mgm.result Correcting bad merge. 2006-08-29 09:30:58 -04:00
partition_mgm_err.result Many files: 2006-06-09 16:20:23 +02:00
partition_mgm_err2.result After merge fixes 2006-02-26 15:11:56 +02:00
partition_order.result BUG#20389: Crash when using index scan in reverse order 2006-07-15 03:38:34 -04:00
partition_pruning.result Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-5.1-opt 2006-08-01 09:24:19 +04:00
partition_range.result BUG#21339: Crash at EXPLAIN PARTITIONS 2006-08-05 16:12:24 -04:00
perror.result Change error code to test for "unknown error" with to 10000 2006-08-01 11:29:10 +02:00
preload.result Added --pipe option for faster compile 2006-06-06 20:21:36 +03:00
ps.result Merge bodhi.local:/opt/local/work/mysql-5.0-runtime-safemerge 2006-08-30 03:00:19 +04:00
ps_1general.result Fix for bug #20665 All commands supported in Stored Procedures 2006-08-23 15:50:06 +02:00
ps_2myisam.result Merge xiphis.org:/home/antony/work2/mysql-5.0-engines 2006-08-14 21:27:36 -07:00
ps_3innodb.result Merge xiphis.org:/home/antony/work2/mysql-5.0-engines 2006-08-14 21:27:36 -07:00
ps_4heap.result Merge xiphis.org:/home/antony/work2/mysql-5.0-engines 2006-08-14 21:27:36 -07:00
ps_5merge.result Merge xiphis.org:/home/antony/work2/mysql-5.0-engines 2006-08-14 21:27:36 -07:00
ps_7ndb.result Merge xiphis.org:/home/antony/work2/mysql-5.0-engines 2006-08-14 21:27:36 -07:00
ps_10nestset.result
ps_11bugs.result BUG#18492: mysqld reports ER_ILLEGAL_REFERENCE in --ps-protocol 2006-04-28 11:23:31 +02:00
ps_grant.result Fix for bug #20665 All commands supported in Stored Procedures 2006-08-23 15:50:06 +02:00
query_cache.result Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-09-18 12:57:20 +02:00
query_cache_merge.result
query_cache_notembedded.result We should prohobit concurent read of inserting file in SP 2006-03-15 19:15:52 +02:00
raid.result
range.result Merge spetrunia@bk-internal.mysql.com:/home/bk/mysql-5.1-opt 2006-09-19 21:14:37 +04:00
read_only.result Add new option "check-testcases" to mysql-test-run.pl 2006-01-26 17:54:34 +01:00
rename.result
renamedb.result Bug#19392 Rename Database: Crash if case change 2006-05-18 12:21:13 +05:00
repair.result Merge fixes 2006-08-14 16:50:52 -07:00
replace.result Manually merged 2006-06-18 14:56:35 +04:00
rollback.result
row.result merge fixes 2006-09-18 18:30:51 +04:00
rowid_order_innodb.result
rpl000001.a.result
rpl000001.b.result
rpl000010.result
rpl000011.result
rpl000013.result
rpl000017.result Merge neptunus.(none):/home/msvensson/mysql/mysqltestrun_check_testcases/my50-mysqltestrun_check_testcases 2006-02-07 17:20:50 +01:00
rpl_000015.result
rpl_alter.result
rpl_alter_db.result BUG#17521 alter database crashes slave 2006-02-23 23:20:29 -05:00
rpl_auto_increment.result Manual merge of test from 5.0 (needs to be manual because the test files 2006-07-09 18:45:16 +02:00
rpl_auto_increment_11932.result rpl_auto_increment_11932.test, rpl_auto_increment_11932.result: 2006-05-22 12:18:18 +09:30
rpl_bit.result
rpl_bit_npk.result Bug#17400 (CRBR: Delete and update of table w/o PK fails on slave): 2006-05-11 11:09:58 +02:00
rpl_change_master.result
rpl_commit_after_flush.result
rpl_create_database.result Bug #17805 Cluster_replication database should be renamed to just cluster 2006-03-01 13:31:21 +01:00
rpl_ddl.result Merge mysql.com:/users/lthalmann/bkroot/mysql-5.1-new-rpl 2006-06-16 01:15:19 +02:00
rpl_deadlock_innodb.result Post merge correction for the Changeset 2006-04-25 18:28:29 +02:00
rpl_delete_no_where.result
rpl_do_grant.result
rpl_drop.result
rpl_drop_db.result Cleanup testcases 2006-05-31 23:34:28 +02:00
rpl_drop_temp.result More rpl test updates with using ndb as default engine 2006-02-07 14:51:46 +01:00
rpl_dual_pos_advance.result
rpl_EE_err.result
rpl_empty_master_crash.result
rpl_err_ignoredtable.result More rpl test updates with using ndb as default engine 2006-02-07 14:51:46 +01:00
rpl_failed_optimize.result Don't use row level logging on optimize or repair table. 2006-05-05 20:08:40 +03:00
rpl_flushlog_loop.result Made rpl_flushlog_loop use wait_slave_status instead of sleep. 2006-03-21 17:40:51 +01:00
rpl_foreign_key_innodb.result WL#1563 - Modify MySQL to support fast CREATE/DROP INDEX 2006-01-23 12:17:05 +01:00
rpl_free_items.result
rpl_get_lock.result Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-5.1-opt 2006-08-01 09:24:19 +04:00
rpl_ignore_grant.result
rpl_ignore_revoke.result Add new option "check-testcases" to mysql-test-run.pl 2006-01-26 17:54:34 +01:00
rpl_ignore_table.result BUG#15699 importing the fix from 5.0 2006-01-26 12:49:55 +02:00
rpl_ignore_table_update.result Implemented requested changes by Lars and did some general test cleanup. Lots more togo 2006-02-03 15:38:27 +01:00
rpl_init_slave.result
rpl_innodb.result Make it possible to run mysql-test-run.pl with default test suite in different vardir. 2006-01-24 08:30:54 +01:00
rpl_insert.result BUG#20821 (INSERT DELAYED failes to write some rows to binlog): 2006-07-08 06:15:24 +02:00
rpl_insert_id.result After merge fix 2006-08-01 08:49:43 +04:00
rpl_insert_id_pk.result Update result 2006-06-01 12:41:57 +02:00
rpl_insert_ignore.result
rpl_insert_select.result
rpl_LD_INFILE.result Fix test cases to work with non-standard --vardir. 2006-02-22 10:07:54 +01:00
rpl_load_from_master.result Bug #17805 Cluster_replication database should be renamed to just cluster 2006-03-01 13:31:21 +01:00
rpl_load_table_from_master.result Fix test cases to work with non-standard --vardir. 2006-02-22 10:07:54 +01:00
rpl_loaddata.result Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2006-07-15 00:33:24 -06:00
rpl_loaddata2.result Fix test cases to work with non-standard --vardir. 2006-02-22 10:07:54 +01:00
rpl_loaddata_m.result Bug #17805 Cluster_replication database should be renamed to just cluster 2006-03-01 13:31:21 +01:00
rpl_loaddata_s.result BUG#17339: Missed line in previous patch 2006-02-13 19:52:57 +01:00
rpl_loaddatalocal.result rpl_loaddatalocal.result, rpl_loaddatalocal.test: 2006-05-02 22:56:53 +02:00
rpl_loadfile.result Fix test cases to work with non-standard --vardir. 2006-02-22 10:07:54 +01:00
rpl_log_pos.result
rpl_many_optimize.result
rpl_master_pos_wait.result Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-5.1-opt 2006-08-01 09:24:19 +04:00
rpl_misc_functions.result Merge neptunus.(none):/home/msvensson/mysql/mysqltest_var/my51-mysqltest_var 2006-02-07 18:04:50 +01:00
rpl_mixed_ddl_dml.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
rpl_multi_delete.result test updates 2006-02-09 15:29:57 +01:00
rpl_multi_delete2.result test updates 2006-02-09 15:29:57 +01:00
rpl_multi_engine.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
rpl_multi_update.result
rpl_multi_update2.result
rpl_multi_update3.result ndb - 2006-08-29 10:47:28 +02:00
rpl_multi_update4.result BUG#15699 importing the fix from 5.0 2006-01-26 12:49:55 +02:00
rpl_ndb_2innodb.result ndb/repl - bug#19004 rpl_ndb_2myisam ok, rpl_ndb_2innodb new bug(number)19227 2006-04-20 18:53:23 +02:00
rpl_ndb_2myisam.result Re-apply missing changeset, orignally pushed by jmiller 2006-06-06 14:34:42 +03:00
rpl_ndb_auto_inc.result WL#3146 "less locking in auto_increment": 2006-07-09 17:52:19 +02:00
rpl_ndb_bank.result Bug #17805 Cluster_replication database should be renamed to just cluster 2006-03-01 13:31:21 +01:00
rpl_ndb_basic.result sql_delete.cc: 2006-06-12 14:23:21 +02:00
rpl_ndb_blob.result ndb - bug#18067 bug#18075 closes these bugs 2006-03-09 17:16:04 +01:00
rpl_ndb_blob2.result Updated test cases 2006-02-13 16:36:11 +01:00
rpl_ndb_charset.result Bug#19995 (Extreneous table maps generated for statements that do not generate rows): 2006-05-31 19:21:52 +02:00
rpl_ndb_commit_afterflush.result Test case updates and new test cases added to CRBR 2006-02-16 04:42:16 +01:00
rpl_ndb_dd_advance.result BUG#19010: Fix issues with that ALTER TABLE from auto-partitioned NDB table doesn't work unless primary key exists on table. 2006-05-10 12:53:40 -04:00
rpl_ndb_dd_basic.result wl#3023 clean up 2006-03-11 15:52:38 +01:00
rpl_ndb_dd_partitions.result rpl_ndb_dd_partitions.test, rpl_ndb_dd_partitions.result: 2006-06-27 18:44:25 +02:00
rpl_ndb_ddl.result Test case updates and new test cases added to CRBR 2006-02-16 04:42:16 +01:00
rpl_ndb_delete_nowhere.result Test updates 2006-02-15 14:02:47 +01:00
rpl_ndb_func003.result More test case updates for using RPL with NDB as default engine 2006-02-07 00:18:10 +01:00
rpl_ndb_idempotent.result Bug #17805 Cluster_replication database should be renamed to just cluster 2006-03-01 13:31:21 +01:00
rpl_ndb_innodb_trans.result Fix for BUG#11151 "LOAD DATA INFILE commits transaction in 5.0". 2006-09-05 16:52:05 +02:00
rpl_ndb_insert_ignore.result Enabled test rpl_ndb_insert_ignore 2006-03-24 13:26:35 +01:00
rpl_ndb_load.result
rpl_ndb_log.result Change table_id's to # to make tests portable 2006-06-21 18:27:45 +03:00
rpl_ndb_multi.result Bug #17805 Cluster_replication database should be renamed to just cluster 2006-03-01 13:31:21 +01:00
rpl_ndb_multi_update2.result Test case updates and new test cases added to CRBR 2006-02-16 04:42:16 +01:00
rpl_ndb_multi_update3.result ndb - 2006-08-29 10:47:28 +02:00
rpl_ndb_relayrotate.result Test case updates and new test cases added to CRBR 2006-02-16 04:42:16 +01:00
rpl_ndb_row_001.result Fix test cases to work with non-standard --vardir. 2006-02-22 10:07:54 +01:00
rpl_ndb_sp003.result test updates 2006-02-10 12:52:35 +01:00
rpl_ndb_sp006.result Cleanup testcases 2006-05-31 23:34:28 +02:00
rpl_ndb_sync.result increase save_master_pos timeout to 30 seconds for higher test predictability 2006-04-12 15:55:41 +02:00
rpl_ndb_trig004.result Test updates 2006-02-15 14:02:47 +01:00
rpl_ndb_UUID.result BUG#19010: Fix issues with that ALTER TABLE from auto-partitioned NDB table doesn't work unless primary key exists on table. 2006-05-10 12:53:40 -04:00
rpl_ndbapi_multi.result Removed absolute path 2006-09-01 16:14:59 +02:00
rpl_openssl.result Clean up after big merge 2006-05-01 00:14:32 -07:00
rpl_optimize.result
rpl_ps.result Fixed depedency problem with the following test. 2006-03-16 17:44:27 +02:00
rpl_rbr_to_sbr.result Re-enabling rpl_rbr_to_sbr.test as BUG#18108 was fixed 2006-03-14 14:21:28 +01:00
rpl_redirect.result BUG#17339: Most rpl tests need to execute sync_slave_with_master to ensure that cleanup is done on slave 2006-02-13 19:03:12 +01:00
rpl_relay_space_innodb.result Bug#16993 (ALTER TABLE ZEROFILL AUTO_INCREMENT not replicated correctly): 2006-04-19 15:29:49 +02:00
rpl_relay_space_myisam.result Bug#16993 (ALTER TABLE ZEROFILL AUTO_INCREMENT not replicated correctly): 2006-04-19 15:29:49 +02:00
rpl_relayrotate.result Fixes for Bug#12429: Replication tests fail: "Slave_IO_Running" (?) differs related to 2006-04-13 20:42:48 +02:00
rpl_relayspace.result
rpl_replicate_do.result Merge jmiller@bk-internal.mysql.com:/home/bk/mysql-5.1-new 2006-02-08 16:52:34 +01:00
rpl_replicate_ignore_db.result
rpl_rewrt_db.result Merge neptunus.(none):/home/msvensson/mysql/mysqltest_var/my50-mysqltest_var 2006-01-24 14:10:48 +01:00
rpl_rotate_logs.result
rpl_row_001.result Fix test cases to work with non-standard --vardir. 2006-02-22 10:07:54 +01:00
rpl_row_4_bytes.result WL#2977 and WL#2712 global and session-level variable to set the binlog format (row/statement), 2006-02-25 22:21:03 +01:00
rpl_row_basic_2myisam.result WL#3023 (RBR: Use locks in a statement-like manner): 2006-02-24 16:19:55 +01:00
rpl_row_basic_3innodb.result WL#3023 (RBR: Use locks in a statement-like manner): 2006-02-24 16:19:55 +01:00
rpl_row_basic_7ndb.result WL#3023 (RBR: Use locks in a statement-like manner): 2006-03-03 09:49:46 +01:00
rpl_row_basic_8partition.result Many files: 2006-06-09 16:20:23 +02:00
rpl_row_basic_11bugs.result Various fixes to allow tests to pass. 2006-06-15 16:53:12 +02:00
rpl_row_blob_innodb.result Updated result files 2006-02-16 23:10:52 +01:00
rpl_row_blob_myisam.result Updated result files 2006-02-16 23:10:52 +01:00
rpl_row_charset.result Bug#19995 (Extreneous table maps generated for statements that do not generate rows): 2006-05-31 19:21:52 +02:00
rpl_row_create_table.result Merge dl145k.mysql.com:/data0/mkindahl/bkroot/mysql-5.1-new-rpl 2006-07-11 12:17:19 +02:00
rpl_row_delayed_ins.result BUG#20821 (INSERT DELAYED fails to write some rows to binlog): 2006-07-05 16:58:56 +02:00
rpl_row_drop.result WL#3023 (RBR: Use locks in a statement-like manner): 2006-03-03 09:49:46 +01:00
rpl_row_err_ignoredtable.result
rpl_row_flsh_tbls.result Update test results 2006-02-08 10:33:21 +01:00
rpl_row_func001.result
rpl_row_func002.result
rpl_row_func003.result
rpl_row_inexist_tbl.result Fixed BUG#18948 "Disabled test case rpl_row_inexist_tbl". 2006-06-05 05:49:06 +04:00
rpl_row_loaddata_m.result Fix test cases to work with non-standard --vardir. 2006-02-22 10:07:54 +01:00
rpl_row_log.result Change table_id's to # to make tests portable 2006-06-21 18:27:45 +03:00
rpl_row_log_innodb.result Change table_id's to # to make tests portable 2006-06-21 18:27:45 +03:00
rpl_row_max_relay_size.result Bug#18280 (RBR: Extreneous maps when writing to general_log and slow_log): 2006-03-17 18:11:07 +01:00
rpl_row_multi_query.result
rpl_row_mysqlbinlog.result rpl_row_mysqlbinlog.result, rpl_row_mysqlbinlog.test: 2006-02-22 23:11:42 +01:00
rpl_row_mystery22.result
rpl_row_NOW.result
rpl_row_reset_slave.result
rpl_row_sp001.result More test case updates for using RPL with NDB as default engine 2006-02-07 00:18:10 +01:00
rpl_row_sp002_innodb.result
rpl_row_sp003.result
rpl_row_sp005.result Missed a check in of new results for rpl_relay_space_myisam 2006-02-08 22:00:11 +01:00
rpl_row_sp006_InnoDB.result Update result 2006-06-01 12:41:57 +02:00
rpl_row_sp007_innodb.result
rpl_row_sp008.result WL#3023 (RBR: Use locks in a statement-like manner): 2006-03-03 09:49:46 +01:00
rpl_row_sp009.result Missed a check in of new results for rpl_relay_space_myisam 2006-02-08 22:00:11 +01:00
rpl_row_sp010.result Test updates to use with a default engine of ndb 2006-02-17 20:29:46 +01:00
rpl_row_sp011.result
rpl_row_sp012.result
rpl_row_stop_middle.result
rpl_row_stop_middle_update.result Fix test cases to work with non-standard --vardir. 2006-02-22 10:07:54 +01:00
rpl_row_tabledefs.result
rpl_row_trig001.result Fix missing test cleanup 2006-02-10 10:18:57 +01:00
rpl_row_trig002.result More updates for using NDB as default and some bug fixes along the way 2006-02-08 13:08:19 +01:00
rpl_row_trig003.result
rpl_row_trig004.result Test updates 2006-02-15 14:02:47 +01:00
rpl_row_until.result
rpl_row_USER.result
rpl_row_UUID.result Update test result 2006-03-06 20:09:16 +01:00
rpl_row_view01.result Missed a check in of new results for rpl_relay_space_myisam 2006-02-08 22:00:11 +01:00
rpl_server_id1.result
rpl_server_id2.result
rpl_session_var.result
rpl_set_charset.result
rpl_skip_error.result Merge jmiller@bk-internal.mysql.com:/home/bk/mysql-5.1-new 2006-02-08 16:52:34 +01:00
rpl_slave_status.result BUG#17339: Most rpl tests need to execute sync_slave_with_master to ensure that cleanup is done on slave 2006-02-13 19:03:12 +01:00
rpl_sp.result Merge bodhi.local:/opt/local/work/tmp_merge 2006-08-12 21:06:51 +04:00
rpl_sp004.result changes for when NDB is default engine 2006-05-11 18:12:06 +02:00
rpl_sp_effects.result Bug#19066 (DELETE FROM inconsistency for NDB): 2006-06-01 11:53:27 +02:00
rpl_sporadic_master.result More updates for using NDB as default and some bug fixes along the way 2006-02-08 13:08:19 +01:00
rpl_start_stop_slave.result
rpl_stm_000001.result Merge neptunus.(none):/home/msvensson/mysql/mysqltest_var/my51-mysqltest_var 2006-02-07 18:04:50 +01:00
rpl_stm_charset.result Merge mysql.com:/usr_rh9/home/elkin.rh9/MySQL/Merge/5.0 2006-02-14 20:48:34 +02:00
rpl_stm_EE_err2.result WL#1563 - Modify MySQL to support fast CREATE/DROP INDEX 2006-01-23 12:17:05 +01:00
rpl_stm_flsh_tbls.result Merge neptunus.(none):/home/msvensson/mysql/mysqltestrun_check_testcases/my50-mysqltestrun_check_testcases 2006-02-07 17:20:50 +01:00
rpl_stm_log.result rpl_log.test, rpl_stm_log.result: 2006-06-19 04:26:27 +04:00
rpl_stm_max_relay_size.result
rpl_stm_multi_query.result
rpl_stm_mystery22.result
rpl_stm_no_op.result Cleanup testcases 2006-05-31 23:34:28 +02:00
rpl_stm_reset_slave.result
rpl_stm_until.result After merge fixes 2006-05-18 21:40:52 +02:00
rpl_switch_stm_row_mixed.result Manual merge 5.0->5.1. Post-merge fixes. 2006-08-14 13:27:11 +04:00
rpl_temp_table.result Implemented requested changes by Lars and did some general test cleanup. Lots more togo 2006-02-03 15:38:27 +01:00
rpl_temporary.result BUG#19188 incorrect temporary table name of DROP query in replication 2006-07-09 00:29:33 +03:00
rpl_timezone.result BUG#16217 forced to introduce a separate mysql client command to adopt its 2006-02-09 16:23:09 +02:00
rpl_trigger.result Merge bodhi.local:/opt/local/work/tmp_merge 2006-08-12 21:06:51 +04:00
rpl_trunc_temp.result Bug#17137 Running "truncate table" on temporary table leaves the table open on a slave 2006-03-08 10:15:48 +01:00
rpl_truncate_2myisam.result Bug#19066 (DELETE FROM replication inconsistency for NDB): 2006-06-13 22:10:01 +02:00
rpl_truncate_3innodb.result Bug#19066 (DELETE FROM replication inconsistency for NDB): 2006-06-13 22:10:01 +02:00
rpl_truncate_7ndb.result Fixes in tests for Replication/Backup Team Tree. 2006-06-16 11:10:37 +02:00
rpl_truncate_7ndb_2.result Fixed failure with rpl_truncate_7ndb.test when using statement based replication. 2006-06-22 22:44:21 +03:00
rpl_user_variables.result Bug#19136: Manual 5.0->5.1 merge 2006-05-11 20:41:11 +04:00
rpl_variables.result Cleanup testcases 2006-05-31 23:34:28 +02:00
rpl_view.result Manual merge 5.0->5.1. Post-merge fixes. 2006-08-14 13:27:11 +04:00
schema.result Bug #17805 Cluster_replication database should be renamed to just cluster 2006-03-01 13:31:21 +01:00
select.result Merge moonbone.local:/work/tmp_merge-5.0-mysql 2006-08-29 18:58:50 +04:00
select_found.result
select_safe.result
server_id.require
server_id1.require
show_check.result Bug #19874: SHOW COLUMNS and SHOW KEYS handle identifiers containing \ incorrectly 2006-09-01 10:39:48 -07:00
skip_grants.result Additional fix for BUG#16777: Can not create trigger nor view 2006-03-10 14:40:15 +03:00
skip_name_resolve.result WL #3337 (Event scheduler new architecture) 2006-07-04 18:44:35 +02:00
slave-running.result
slave-stopped.result
sp-big.result
sp-code.result Bug#19207: Final parenthesis omitted for CREATE INDEX in Stored Procedure 2006-07-07 21:24:54 +04:00
sp-destruct.result Fixed BUG#16303: erroneus stored procedures and functions should be droppable 2006-01-26 13:29:46 +01:00
sp-dynamic.result Fix for bug #20665 All commands supported in Stored Procedures 2006-08-23 15:50:06 +02:00
sp-error.result Merge bodhi.local:/opt/local/work/mysql-5.0-runtime-safemerge 2006-08-30 03:00:19 +04:00
sp-prelocking.result Fix for bug#19634 "Re-execution of multi-delete which involve trigger/stored 2006-06-21 01:50:20 +04:00
sp-security.result Manual merge 5.0->5.1. Post-merge fixes. 2006-08-14 13:27:11 +04:00
sp-threads.result WL #3337 (Event scheduler new architecture) 2006-07-04 18:44:35 +02:00
sp-vars.result Merge bodhi.local:/opt/local/work/tmp_merge 2006-07-15 01:04:51 +04:00
sp.result merge fixes 2006-09-18 18:30:51 +04:00
sp_notembedded.result Merge ahristov@bk-internal.mysql.com:/home/bk/mysql-5.1-wl3337 2006-08-14 15:26:59 +02:00
sp_trans.result Fixed warning message breakage. 2006-08-13 22:28:41 -07:00
sql_mode.result Merge mysql.com:/users/lthalmann/bk/MERGE/mysql-5.0-merge 2006-06-21 14:14:37 +02:00
ssl.result BUG#14940: Post-merge fixes 2006-07-30 18:25:57 +04:00
ssl_compress.result BUG#14940: Post-merge fixes 2006-07-30 18:25:57 +04:00
status.result WL #3337 (Event scheduler new architecture) 2006-07-04 18:44:35 +02:00
strict.result Merge xiphis.org:/home/antony/work2/mysql-5.0-engines 2006-08-14 21:27:36 -07:00
subselect.result Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-09-18 12:57:20 +02:00
subselect2.result Merge macbook.gmz:/Users/kgeorge/mysql/work/B20792-4.1-opt 2006-07-26 19:23:44 +03:00
subselect_gis.result
subselect_innodb.result Add new option "check-testcases" to mysql-test-run.pl 2006-01-26 17:54:34 +01:00
subselect_notembedded.result Fixes to embedded server to be able to run tests with it 2006-02-24 18:34:15 +02:00
sum_distinct-big.result
sum_distinct.result
symlink.result Merge chilla.local:/home/mydev/mysql-5.0-ateam 2006-07-06 13:18:00 +02:00
synchronization.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
sysdate_is_now.result Post-merge fixes 2006-06-09 19:29:39 -07:00
system_mysql_db.result Fix for bug #17394 - Events namespace is wrong 2006-05-29 10:39:45 +02:00
system_mysql_db_refs.result
tablelock.result
temp_table.result SHOW STATUS does not anymore change local status variables (except com_show_status). Global status variables are still updated. 2006-06-20 13:20:32 +03:00
testdb_only.require
timezone.result
timezone2.result Bug#19066 (DELETE FROM inconsistency for NDB): 2006-06-01 11:53:27 +02:00
timezone3.result
timezone_grant.result Merge mysql.com:/extern/mysql/5.1/generic/mysql-5.0-merge 2006-04-25 16:20:49 +02:00
trigger-compat.result Merge neptunus.(none):/home/msvensson/mysql/mysqltestrun_check_testcases/my51-mysqltestrun_check_testcases 2006-02-07 17:57:26 +01:00
trigger-grant.result Merge mysql.com:/users/lthalmann/bkroot/mysql-5.1-new-rpl 2006-06-16 01:15:19 +02:00
trigger-trans.result Fix for bug #18153 "ALTER/OPTIMIZE/REPAIR on transactional tables corrupt 2006-03-24 14:58:18 +03:00
trigger.result Merge bodhi.local:/opt/local/work/mysql-5.0-runtime-safemerge 2006-08-30 03:00:19 +04:00
truncate.result
type_binary.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
type_bit.result Merge maint1.mysql.com:/data/localhome/cmiller/bug15583/my50-bug15583 2006-09-13 15:01:19 +02:00
type_bit_innodb.result Merge mysql.com:/home/jimw/my/mysql-5.0-clean 2006-04-10 20:18:12 -07:00
type_blob.result Merge bodhi.local:/opt/local/work/tmp_merge 2006-08-12 21:06:51 +04:00
type_date.result Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-09-18 12:57:20 +02:00
type_datetime.result Merge moonbone.local:/work/tmp_merge-5.0-mysql 2006-08-29 18:58:50 +04:00
type_decimal.result merged 2006-03-06 23:20:19 +01:00
type_enum.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
type_float.result Merge mysql.com:/data0/mysqldev/my/tmp_merge 2006-05-17 23:35:08 +02:00
type_nchar.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
type_newdecimal-big.result
type_newdecimal.result Merge bk-internal.mysql.com:/data0/bk/mysql-5.1 2006-08-17 22:30:32 +02:00
type_ranges.result Merge bk-internal.mysql.com:/data0/bk/tmp_reg 2006-08-17 17:19:41 +02:00
type_set.result Bug#10460 SHOW CREATE TABLE uses inconsistent upper/lower case 2006-02-22 10:09:59 +01:00
type_time.result
type_timestamp.result Merge bk-internal.mysql.com:/data0/bk/tmp_reg 2006-08-17 17:19:41 +02:00
type_uint.result
type_varchar.result Merge bodhi.local:/opt/local/work/mysql-5.0-runtime-safemerge 2006-08-30 03:00:19 +04:00
type_year.result
udf.result Merge bodhi.local:/opt/local/work/tmp_merge 2006-08-12 21:06:51 +04:00
union.result Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-09-18 12:57:20 +02:00
update.result Merge mysql.com:/opt/local/work/mysql-4.1-root 2006-02-02 18:17:18 +03:00
upgrade.result Bug#18736 test case 'upgrade' fails 2006-04-12 14:45:37 +05:00
user_limits.result
user_var-binlog.result Merge mysql.com:/usr_rh9/home/elkin.rh9/MySQL/Merge/5.0 2006-02-14 20:48:34 +02:00
user_var.result Merge polly.local:/tmp/20924/bug20294/my50-bug20294 2006-09-13 16:00:15 +04:00
varbinary.result BUG#14940 "MySQL choose wrong index", v.2 2006-07-28 21:27:01 +04:00
variables.result Merge maint1.mysql.com:/data/localhome/cmiller/bug20908/my50-bug20908 2006-08-15 19:30:24 +02:00
view.result Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-09-18 12:57:20 +02:00
view_grant.result Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-09-18 12:57:20 +02:00
view_query_cache.result
wait_timeout.result BUG#19951: Race conditions in test wait_timeout. 2006-07-06 23:49:09 +02:00
warnings.result merge warning test results (!) 2006-08-16 20:39:33 -07:00
windows.require Update 'abort_not_supported_test' to print a reason why the test was aborted 2006-07-19 14:25:52 +02:00
windows.result Bug#20789 Merge Subtable Rename Causes Crash 2006-09-12 14:23:41 +02:00
xa.result
xml.result Bug#20795: extractvalue() won't accept names containing a dot (.) 2006-07-25 18:46:43 +05:00