mariadb/mysql-test/t
unknown 6866ca008c BUG#24342 - Incorrect results with query over MERGE table
MERGE engine may return incorrect values when several representations
of equal keys are present in the index. For example "groß" and "gross"
or "gross" and "gross " (trailing space), which are considered equal,
but have different lengths.

The problem was that key length was not recalculated after key lookup.

Only MERGE engine is affected.


myisam/mi_rkey.c:
  info->lastkey gets rewritten by mi_search. Later we recalculate found lastkey
  length. This is done to make sure that mi_rnext_same gets true, found (not
  searched) lastkey length. Searched and found key lengths may be different,
  for example in case searched key is "groß" and found is "gross" or in case
  a key has trailing spaces.
  
  Unfortunately we recalculate found lastkey length only for first
  underlying table. To recalculate found key length for non-first underlying
  table we need to know how much key segments were used to create this key.
  
  When mi_rkey is called for first underlying table of a merge table, store
  offset to last used key segment.
  
  Restore last_used_keyseg variable when mi_rkey is called for non-first
  underlying table.
myisam/myisamdef.h:
  Added last_used_keyseg variable to MI_INFO. It is used by merge engine to calculate
  key length.
myisammrg/myrg_rkey.c:
  Pass last used key segment returned by first table key read to other
  table key reads.
mysql-test/r/merge.result:
  A test case for bug#24342.
mysql-test/t/merge.test:
  A test case for bug#24342.
2007-04-11 01:40:35 +05:00
..
alias.test
alter_table.test Bug#24562 (ALTER TABLE ... ORDER BY ... with complex expression asserts) 2007-01-18 16:53:49 -07:00
analyse.test Bug#20305: PROCEDURE ANALYSE() returns wrong M for FLOAT(M, D) and DOUBLE(M, D) 2006-09-28 14:30:20 -04:00
analyze.test Fix for bug #15225 (ANALYZE temporary has no effect) 2005-12-10 18:02:36 +04:00
ansi.test Added tests for Bug#14515 2006-05-01 21:30:09 +03:00
archive.test Fix for bug #15558: truncate doesn't clear table on archive storage engine tables. 2006-05-18 17:10:58 +05:00
auto_increment.test Fix for bug #6880: LAST_INSERT_ID() within a statement 2006-06-07 14:01:10 +05:00
backup-master.sh
backup.test A fix for the broken 4.1-runtime tree. 2007-01-16 21:23:52 +03:00
bdb-alter-table-1.test
bdb-alter-table-2-master.opt Improve restart logic all code to detect restart is now in the functions 2006-10-11 14:50:19 +02:00
bdb-alter-table-2.test
bdb-crash.test
bdb-deadlock.test WL#3475 (Threads for the embedded server in mysqltest) 2006-10-23 15:02:51 +05:00
bdb-deadlock.tminus
bdb.test Fix calls to free_underlaid_joins() in INSERT, DELETE, and UPDATE 2005-12-08 12:33:33 -08:00
bdb_cache-master.opt
bdb_cache.test
bench_count_distinct.test
bigint.test
binary.test
blackhole.test
bool.test
bulk_replace.test
case.test Cset exclude: kaa@polly.local|ChangeSet|20060912122540|09861 2006-09-13 14:41:28 +04:00
cast.test fix for bug #23938: ISNULL on DATE AND CAST AS DATE returns false for null values 2006-12-04 17:06:25 +04:00
check.test
comments.test
compare.test
connect.test Update mysqltest to latest version 2006-10-03 15:33:44 +02:00
consistent_snapshot.test
constraints.test
count_distinct.test
count_distinct2-master.opt
count_distinct2.test
count_distinct3.test Bug#8663 cant use bgint unsigned as input to cast 2006-06-14 13:40:21 +05:00
create.test Fix for bug#15316 SET value having comma not correctly handled 2006-03-29 19:52:26 +05:00
create_select_tmp.test
csv.test Add missing semicolon in test file 2006-10-13 08:48:47 +02:00
ctype_big5.test Bug#15375 Unassigned multibyte codes are broken 2005-12-12 21:42:09 +04:00
ctype_collate.test
ctype_cp932.test Fix for bug #14183 (ctype_cp983.test fails with the embedded server) 2005-11-01 13:18:46 +04:00
ctype_cp932_binlog.test Fix for bug #14183 (ctype_cp983.test fails with the embedded server) 2005-11-01 13:18:46 +04:00
ctype_cp1250_ch.test Bug#19741 segfault with cp1250 charset + like + primary key + 64bit os 2006-07-25 17:27:53 +05:00
ctype_cp1251.test
ctype_create.test
ctype_euckr.test Bug#15377 Valid multibyte sequences are truncated on INSERT 2005-12-09 16:37:58 +04:00
ctype_gb2312.test Bug#15377 Valid multibyte sequences are truncated on INSERT 2005-12-09 16:37:58 +04:00
ctype_gbk.test Bug#15375 Unassigned multibyte codes are broken 2005-12-12 21:42:09 +04:00
ctype_hebrew.test Fix for the bug #24037 "Lossy Hebrew to Unicode conversion". 2006-12-22 15:30:37 +03:00
ctype_latin1.test This problem has already been fixed by one of the previous changes. 2006-04-06 10:51:23 +05:00
ctype_latin1_de-master.opt
ctype_latin1_de.test
ctype_latin2.test
ctype_latin2_ch.test Bug#17374: select ... like 'A%' operator fails to find value on columuns with key 2006-03-20 16:28:25 +04:00
ctype_many.test
ctype_mb.test
ctype_recoding.test Fix for bug #20695: Charset introducer overrides charset definition for column. 2006-08-15 15:24:07 +05:00
ctype_sjis.test don't let bugfix for bug#8303 break the bugfix for bug#8378 2006-05-24 00:55:53 +02:00
ctype_tis620.test Bug#13046: LIKE pattern matching using prefix 2005-09-21 23:10:51 +05:00
ctype_uca.test Bug#13046: LIKE pattern matching using prefix 2005-09-21 23:10:51 +05:00
ctype_ucs.test Bug#22052 Trailing spaces are not removed from UNICODE fields in an index 2006-10-03 14:11:57 +05:00
ctype_ucs2_def-master.opt mysqld --collation-server=xxx --character-set-server=yyy 2006-08-11 13:19:44 +05:00
ctype_ucs2_def.test mysqld --collation-server=xxx --character-set-server=yyy 2006-08-11 13:19:44 +05:00
ctype_ucs_binlog.test
ctype_ujis.test Bug#15375 Unassigned multibyte codes are broken 2005-12-12 21:42:09 +04:00
ctype_utf8.test Bug#22646 LC_TIME_NAMES: Assignment to non-UTF8 target fails 2006-11-08 15:37:54 +04:00
date_formats-master.opt
date_formats.test Fix for bug #22029: str_to_date returning NULL, while date_format works using identical format. 2006-10-05 15:29:00 +05:00
delayed.test delayed.test fixed 2006-11-13 18:12:15 +04:00
delete.test Bug#17711: DELETE doesn't use index when ORDER BY, LIMIT and non-restricting 2007-01-11 16:05:03 +03:00
derived.test
dirty_close.test
disabled.def Fixes for Bug#12429: Replication tests fail: "Slave_IO_Running" (?) differs related to 2006-04-13 20:42:48 +02:00
distinct.test embedded-server related fixes 2007-01-02 17:46:20 +04:00
drop.test
drop_temp_table.test
empty_table.test
endspace.test
errors.test
exampledb.test
explain.test Fixed bug #17873: confusing error message when IGNORE/USE/FORCE INDEX 2006-05-30 00:08:58 -07:00
flush.test WL#3475 (Threads for the embedded server in mysqltest) 2006-10-23 15:02:51 +05:00
flush_block_commit.test WL#3475 (Threads for the embedded server in mysqltest) 2006-10-23 15:02:51 +05:00
flush_table.test
foreign_key.test
fulltext.test BUG#14496: Crash or strange results with prepared statement, 2006-02-01 20:40:12 +04:00
fulltext2.test BUG#16489 - utf8 + fulltext leads to corrupt index file. 2006-01-23 17:15:33 +04:00
fulltext_cache.test
fulltext_distinct.test
fulltext_left_join.test Fixed bug #25637: LEFT JOIN with BOOLEAN FULLTEXT loses left table matches. 2007-01-22 14:23:53 -08:00
fulltext_multi.test
fulltext_order_by.test
fulltext_update.test
fulltext_var.test
func_compress.test Fix for bug #23254: COMPRESS(NULL) makes all futher COMPRESS() calls on same Item return NULL 2006-10-13 19:05:54 +05:00
func_concat.test Fixed bug#16716: subselect in concat() may lead to a wrong result. 2006-05-26 01:24:14 +04:00
func_crypt.test Handle errors returned by system crypt() in ENCRYPT(). (Bug #13619) 2005-10-06 16:15:53 -07:00
func_date_add.test
func_default.test
func_des_encrypt.test
func_encrypt-master.opt
func_encrypt.test
func_encrypt_nossl.test
func_equal.test
func_gconcat.test Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-4.1-rpl 2006-11-08 22:03:08 +04:00
func_group.test Bug #16792 query with subselect, join, and group not returning proper values 2006-08-10 16:45:02 +03:00
func_if.test Cset exclude: kaa@polly.local|ChangeSet|20060912122540|09861 2006-09-13 14:41:28 +04:00
func_in.test BUG#17047: CHAR() and IN() can return NULL without signaling NULL result 2006-11-16 13:21:38 +03:00
func_isnull.test
func_like.test func_like.result, func_like.test: 2005-09-06 16:16:10 +05:00
func_math.test bug #15429 (Test 'func_math' not prepared for 'classic' build) 2005-12-19 14:21:42 +04:00
func_misc.test Bug #21531: EXPORT_SET() doesn't accept args with coercible character sets 2006-08-23 18:02:31 -06:00
func_op.test after merge fix. 2006-04-11 15:26:18 +05:00
func_regexp.test
func_sapdb.test Dec. 31st, 9999 is still a valid date, only starting with Jan 1st 10000 things become invalid (Bug #12356) 2006-06-27 19:33:59 +04:00
func_set.test
func_str.test Bug#23409: Arguments of the ENCODE() and the DECODE() functions were not printed 2007-01-11 16:45:38 +03:00
func_system.test
func_test.test Bug#23411: ... MOD-ing zero returns strange result 2006-11-06 17:13:19 -05:00
func_time.test Fix for bug #23616: Week() changed behaviour between 5.0.22 and 5.0.24 2006-12-26 15:08:41 +04:00
func_timestamp.test
gcc296.test
gis-rtree.test Bug#25673 - spatial index corruption, error 126 2007-03-08 09:54:37 +01:00
gis.test Fix for bug #26038: X() value of empty NOT NULL POINT is neither NULL nor NOT NULL 2007-02-21 14:45:19 +04:00
grant.test BUG#7391 - Cross-database multi-table UPDATE uses active database 2006-08-03 14:03:08 +05:00
grant2.test Bug#16180 Setting SQL_LOG_OFF without SUPER privilege is silently ignored 2006-06-27 20:10:49 -04:00
grant_cache.test remove hard-coded socket paths from some tests 2006-12-19 15:10:15 +01:00
group_by.test BUG#14019 : group by converts literal string to column name 2006-10-16 13:10:25 +03:00
handler.test Bug #15440 (handler.test hangs in embedded mode) 2006-07-25 18:02:42 +05:00
having.test Fixed bug #14927. 2006-05-06 23:48:13 -07:00
heap.test Remove 'delayed' to make the test deterministic (already 2006-02-23 23:41:15 +03:00
heap_auto_increment.test
heap_btree.test Merge bk-internal.mysql.com:/home/bk/mysql-4.1-engines 2007-03-28 08:51:12 +02:00
heap_hash.test
help.test
init_connect-master.opt
init_connect.test bug 15430 (init_connect test fails with the embedded server) 2006-05-14 21:49:33 +05:00
init_file-master.opt
init_file.test Bug#23240 --init-file statements with NOW() reports '1970-01-01 11:00:00'as the date time 2007-02-19 09:37:34 +01:00
innodb-deadlock.test WL#3475 (Threads for the embedded server in mysqltest) 2006-10-23 15:02:51 +05:00
innodb-lock.test WL#3475 (Threads for the embedded server in mysqltest) 2006-10-23 15:02:51 +05:00
innodb-master.opt
innodb-replace.test
innodb.test embedded-mode tests fixed 2006-11-13 10:39:15 +04:00
innodb_cache-master.opt
innodb_cache.test
innodb_handler.test
innodb_mysql.test Merge bk-internal.mysql.com:/home/bk/mysql-4.1 2006-11-02 17:27:42 -05:00
insert.test
insert_select-binlog.test
insert_select.test * Bug #9676: INSERT INTO x SELECT .. FROM x LIMIT 1; slows down with big 2006-06-19 13:22:42 +03:00
insert_update.test Bug#21555: incorrect behavior with INSERT ... ON DUPL KEY UPDATE and VALUES 2006-09-08 10:24:14 +03:00
isam.test
join.test
join_crash.test
join_outer.test item_cmpfunc.h: 2005-09-06 18:03:08 +04:00
key.test Reverted wrong bug fix (Bug#11228) 2006-06-30 18:29:27 +03:00
key_cache-master.opt
key_cache.test Fixed bug #19079. 2006-04-18 20:57:31 -07:00
key_diff.test
key_primary.test
keywords.test
kill.test Bug#19410 Test 'kill' fails on Windows + SCO 2006-12-08 17:09:07 +01:00
limit.test Fix for BUG#21787: COUNT(*) + ORDER BY + LIMIT returns wrong result 2006-09-01 15:07:04 +03:00
loaddata.test Fix merge of test that left out a drop table. 2005-10-21 19:54:34 -07:00
lock.test Merge mysql.com:/home/mydev/mysql-4.0-bug5390 2006-01-23 19:19:29 +01:00
lock_multi.test WL#3475 (Threads for the embedded server in mysqltest) 2006-10-23 15:02:51 +05:00
lock_tables_lost_commit-master.opt
lock_tables_lost_commit.test
lowercase_fs_off.test Bug#21139 Handling of database differs in "embedded" , test lowercase_fs_off fails 2006-09-19 12:40:31 +02:00
lowercase_table-master.opt
lowercase_table.test
lowercase_table2.test
lowercase_table3-master.opt
lowercase_table3.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
lowercase_table_grant-master.opt
lowercase_table_grant.test
lowercase_table_qcache-master.opt
lowercase_table_qcache.test
merge.test BUG#24342 - Incorrect results with query over MERGE table 2007-04-11 01:40:35 +05:00
metadata.test
mix_innodb_myisam_binlog-master.opt
mix_innodb_myisam_binlog.test fixed the race condition in the test case for BUG#7947 2005-11-16 21:17:38 -07:00
multi_statement-master.opt
multi_statement.test
multi_update-master.opt
multi_update.test Fixed bug#19225: unchecked error results in server crash 2006-05-29 00:32:59 +04:00
myisam-blob-master.opt
myisam-blob.test
myisam.test Bug#26231 - select count(*) on myisam table returns wrong value 2007-03-16 10:28:48 +01:00
mysql_client.test Merge bk@192.168.21.1:mysql-4.1 2006-11-16 20:44:37 +04:00
mysql_client_test.test Update mysqltest to latest version 2006-10-03 15:33:44 +02:00
mysql_protocols.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
mysqladmin.test Merge pilot.mysql.com:/home/msvensson/mysql/mysql-4.1 2007-01-17 11:13:03 +01:00
mysqlbinlog-master.opt
mysqlbinlog.test Merge neptunus.(none):/home/msvensson/mysql/my41-bug21218 2006-08-03 11:57:52 +02:00
mysqlbinlog2.test
mysqldump.test BUG#13926: --order-by-primary fails if PKEY contains quote character. 2006-11-21 11:09:33 +04:00
mysqltest.test Add "diff_files" command to mysqltest 2007-02-20 18:20:58 +01:00
ndb_alter_table.test Updated expected error 2005-11-25 10:41:22 +01:00
ndb_autodiscover.test
ndb_autodiscover2-master.opt
ndb_autodiscover2.test
ndb_autodiscover3.test Bug #16875 Using stale MySQLD FRM files can cause restored cluster to fail 2006-05-15 16:23:59 +02:00
ndb_basic.test Bug #17249 ndb, delete statement with join where clause fails when table do not have pk 2006-02-10 17:40:22 +01:00
ndb_blob.test ndb - bug#19201 (4.1), see comment in NdbBlob.cpp 2006-05-02 14:33:55 +02:00
ndb_cache.test
ndb_charset.test ndb - bug#14007 4.1 [re-commit for LenZ merge] 2005-11-16 11:52:09 +01:00
ndb_config.test ndb - 2005-09-30 11:39:49 +02:00
ndb_database.test
ndb_grant.later
ndb_index.test
ndb_index_ordered.test
ndb_index_unique.test Bug#24818 CREATE UNIQUE INDEX (...) USING HASH on a NDB table crashes mysqld: Added test case 2006-12-07 15:49:59 +01:00
ndb_insert.test
ndb_limit.test
ndb_load.test Bug #17154 load data infile of char values into a table of char(PK) hangs 2006-02-07 00:03:39 +01:00
ndb_loaddatalocal.test Bug #19493 NDB does not ignore duplicate keys when using LOAD DATA LOCAL 2006-06-14 20:16:32 +02:00
ndb_lock.test ndb_lock.test, ndb_lock.result: 2006-08-15 13:12:27 +02:00
ndb_minmax.test
ndb_multi.test Bug #21378 Alter table from X storage engine to NDB could cause data loss: Added warning if local table shadows ndb table 2006-09-12 16:04:52 +02:00
ndb_rename.test Bug#16997 Table rename that changes database does not rename indexes, recreate indexes in new database 2006-05-05 17:18:47 +02:00
ndb_replace.test
ndb_restore.test
ndb_subquery.test
ndb_transaction.test
ndb_truncate.test Bug #18864 TRUNCATE TABLE doesn't reset AUTO_INCREMENT value on ndb table 2006-06-02 07:26:45 +02:00
ndb_types.test ndb_types.test: sleep a bit longer, to ensure that timestamp > @now 2007-01-18 13:26:26 -07:00
ndb_update.test Per discussion with pekka removed non-deterministic test case for bug#21381. 2006-10-06 14:47:58 +05:00
negation_elimination.test
not_embedded_server-master.opt Improve restart logic all code to detect restart is now in the functions 2006-10-11 14:50:19 +02:00
not_embedded_server.test
null.test BUG#19145: mysqld crashes if you set the default value of an enum field to NULL 2006-04-28 12:15:29 -04:00
null_key.test
odbc.test BUG#14553: NULL in WHERE resets LAST_INSERT_ID 2006-07-10 16:27:03 +03:00
olap.test Fixed bug#20825: rollup puts non-equal values together 2006-09-29 20:02:53 +04:00
openssl_1.test Remove extra ; 2005-09-05 12:33:25 +02:00
order_by.test Merge calliope.local.cmiller:/Volumes/Source/src/mysql-4.1-maint--bug25126 2007-02-14 12:24:11 -05:00
order_fill_sortbuf-master.opt
order_fill_sortbuf.test
outfile.test Bug#10418: LOAD_FILE does not behave like in manual if file does not exist 2006-05-08 04:37:58 +02:00
overflow.test
packet.test
preload.test
ps.test Valgrind error fixes 2007-02-01 18:00:24 +04:00
ps_1general.test Update mysqltest to latest version 2006-10-03 15:33:44 +02:00
ps_2myisam.test
ps_3innodb.test
ps_4heap.test
ps_5merge.test
ps_6bdb.test
ps_7ndb.test
ps_10nestset.test
ps_11bugs.test BUG#18492: mysqld reports ER_ILLEGAL_REFERENCE in --ps-protocol 2006-04-28 11:23:31 +02:00
ps_grant.test Update mysqltest to latest version 2006-10-03 15:33:44 +02:00
query_cache.test We should skip beggining '(' characters when test query on possibility 2005-12-01 14:26:19 +02:00
query_cache_merge.test
query_cache_notembedded.test remove hard-coded socket paths from some tests 2006-12-19 15:10:15 +01:00
raid.test
range.test Merge bk-internal.mysql.com:/home/bk/mysql-4.1 2007-01-31 16:23:10 -05:00
rename.test Merge bk@192.168.21.1:mysql-4.1 2006-11-16 20:44:37 +04:00
repair.test Merge mysql.com:/home/svoj/devel/mysql/BUG23175/mysql-4.1-engines 2006-10-19 17:35:09 +05:00
replace.test
rollback.test
row.test
rpl000001-slave.opt
rpl000001.test
rpl000002.test
rpl000004.test
rpl000005.test
rpl000006.test
rpl000008-slave.opt
rpl000008.test
rpl000009-slave.opt
rpl000009.test
rpl000010-slave.opt
rpl000010.test
rpl000011.test
rpl000012.test
rpl000013-slave.opt
rpl000013.test
rpl000015-slave.sh
rpl000015.slave-mi
rpl000015.test remove hard-coded socket paths from some tests 2006-12-19 15:10:15 +01:00
rpl000017-slave.opt
rpl000017-slave.sh
rpl000017.test remove hard-coded socket paths from some tests 2006-12-19 15:10:15 +01:00
rpl000018-master.opt
rpl000018-slave.opt
rpl_alter.test
rpl_change_master.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
rpl_charset.test Use replace_regex to mask the output of file_id= in "show binlog events" that depends on previous tests 2006-10-04 22:52:44 +02:00
rpl_commit_after_flush.test
rpl_create_database-master.opt
rpl_create_database-slave.opt
rpl_create_database.test
rpl_ddl.test
rpl_deadlock-slave.opt
rpl_deadlock.test Fixes for Bug#12429: Replication tests fail: "Slave_IO_Running" (?) differs related to 2006-04-13 20:42:48 +02:00
rpl_delete_all.test
rpl_do_grant.test
rpl_drop.test
rpl_drop_db.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
rpl_drop_temp-slave.opt
rpl_drop_temp.test
rpl_dual_pos_advance-master.opt Optimize restarts by using --force-restart option 2006-10-13 11:53:19 +02:00
rpl_dual_pos_advance.test Fix for BUG#13023: "SQL Thread is up but doesn't move forward". Details in slave.cc; 2005-10-12 13:29:55 +02:00
rpl_EE_error.test
rpl_empty_master_crash-master.opt rpl_empty_master_crash need a master restart so that all log files are deleted 2006-10-13 20:22:56 +02:00
rpl_empty_master_crash.test
rpl_error_ignored_table-slave.opt
rpl_error_ignored_table.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
rpl_failed_optimize-master.opt
rpl_failed_optimize.test
rpl_flush_log_loop-master.opt
rpl_flush_log_loop-master.sh
rpl_flush_log_loop-slave.opt
rpl_flush_log_loop-slave.sh
rpl_flush_log_loop.test
rpl_flush_tables.test Update mysqltest to latest version 2006-10-03 15:33:44 +02:00
rpl_free_items-slave.opt
rpl_free_items.test
rpl_get_lock.test
rpl_ignore_grant-slave.opt
rpl_ignore_grant.test
rpl_ignore_table-slave.opt BUG#16487 importing the test case from 5.0 (the fix is done in BUG#15699) 2006-01-26 12:51:34 +02:00
rpl_ignore_table.test BUG#16487 importing the test case from 5.0 (the fix is done in BUG#15699) 2006-01-26 12:51:34 +02:00
rpl_init_slave-slave.opt
rpl_init_slave.test
rpl_innodb.test
rpl_insert_id-slave.opt
rpl_insert_id.test BUG#21726: Incorrect result with multiple invocations of LAST_INSERT_ID. 2006-10-06 13:34:07 +04:00
rpl_insert_ignore-slave.opt
rpl_insert_ignore.test
rpl_insert_select.test
rpl_loaddata.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
rpl_loaddata_rule_m-master.opt
rpl_loaddata_rule_m.test
rpl_loaddata_rule_s-slave.opt
rpl_loaddata_rule_s.test
rpl_loaddatalocal.test Use same --slave-load-tmpdir in all versions(backport from 5.0) 2006-10-05 18:29:59 +02:00
rpl_locale.test Bug#22645 LC_TIME_NAMES: Statement not replicated 2006-12-05 13:45:21 +04:00
rpl_log-master.opt Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
rpl_log-slave.opt
rpl_log.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
rpl_log_pos.test
rpl_many_optimize.test
rpl_master_pos_wait.test
rpl_max_relay_size.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
rpl_misc_functions-slave.sh
rpl_misc_functions.test
rpl_multi_delete-slave.opt
rpl_multi_delete.test
rpl_multi_delete2-slave.opt fix for BUG#11139 (multi-delete with alias breaking replication if table rules are 2005-09-14 06:31:38 -06:00
rpl_multi_delete2.test fix for BUG#11139 (multi-delete with alias breaking replication if table rules are 2005-09-14 06:31:38 -06:00
rpl_multi_query.test
rpl_multi_update.test
rpl_multi_update2-slave.opt
rpl_multi_update2.test - set 'updating' in both tables list if we have two of them (because of subquery) (BUG#13236) 2005-10-14 00:02:38 +03:00
rpl_multi_update3.test BUG#12618: Removing fake locking 2005-10-10 15:10:14 +02:00
rpl_multi_update4-slave.opt BUG#15699 importing the fix from 5.0 2006-01-26 12:49:55 +02:00
rpl_multi_update4.test BUG#15699 importing the fix from 5.0 2006-01-26 12:49:55 +02:00
rpl_mystery22.test
rpl_openssl.test Fix for bug#13605 'rpl_openssl' test hangs 2005-10-06 19:51:08 +05:00
rpl_optimize.test
rpl_packet-master.opt BUG#19402 SQL close to the size of the max_allowed_packet fails on the slave 2006-09-12 00:19:05 +03:00
rpl_packet-slave.opt BUG#19402 SQL close to the size of the max_allowed_packet fails on the slave 2006-09-12 00:19:05 +03:00
rpl_packet.test bug#19402 SQL close to the size of the max_allowed_packet fails on the slave 2006-11-15 12:53:07 +02:00
rpl_ps.test
rpl_redirect.test
rpl_relayrotate-slave.opt
rpl_relayrotate.test Fixes for Bug#12429: Replication tests fail: "Slave_IO_Running" (?) differs related to 2006-04-13 20:42:48 +02:00
rpl_relayspace-slave.opt
rpl_relayspace.test
rpl_replicate_do-slave.opt
rpl_replicate_do.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
rpl_reset_slave.test
rpl_rewrite_db-slave.opt
rpl_rewrite_db.test
rpl_rotate_logs-master.opt
rpl_rotate_logs-slave.sh
rpl_rotate_logs.slave-mi
rpl_rotate_logs.test remove hard-coded socket paths from some tests 2006-12-19 15:10:15 +01:00
rpl_server_id1.test
rpl_server_id2-slave.opt
rpl_server_id2.test
rpl_set_charset.test
rpl_skip_error-slave.opt
rpl_skip_error.test
rpl_slave_status.test Fix spelling error 2006-10-07 20:16:57 +02:00
rpl_sporadic_master-master.opt
rpl_sporadic_master.test
rpl_start_stop_slave.test
rpl_temporary.test BUG#14157: utf8 encoding in binlog without set character_set_client: e.g DROP temporary 2006-05-16 16:50:05 +03:00
rpl_timezone-master.opt
rpl_timezone-slave.opt
rpl_timezone.test
rpl_trunc_binlog.test
rpl_trunc_temp.test Update mysqltest to latest version 2006-10-03 15:33:44 +02:00
rpl_until.test Fixes for Bug#12429: Replication tests fail: "Slave_IO_Running" (?) differs related to 2006-04-13 20:42:48 +02:00
rpl_user_variables.test Bug#19136: Crashing log-bin and uninitialized user variables in a derived table 2006-05-05 11:21:21 +03:00
rpl_variables.test
select.test Fix for bug #22533: Traditional: Too-long bit value not rejected. 2006-12-06 16:32:12 +04:00
select_found.test
select_safe.test
show_check.test WL#3475 (Threads for the embedded server in mysqltest) 2006-10-23 15:02:51 +05:00
skip_name_resolve-master.opt
skip_name_resolve.test
sql_mode.test Fix for bug #7977 in sql_mode=ANSI, show create table ignores auto_increment 2005-09-29 16:17:45 +05:00
status.test WL#3475 (Threads for the embedded server in mysqltest) 2006-10-23 15:02:51 +05:00
subselect.test Fixed bug #24653. 2007-01-25 18:44:35 -08:00
subselect2.test * Bug #20792: Incorrect results from aggregate subquery 2006-07-26 19:19:30 +03:00
subselect_gis.test
subselect_innodb.test
symlink.test Valgrind error fixes 2007-02-01 18:00:24 +04:00
synchronization.test
system_mysql_db.test
system_mysql_db_fix-master.opt
system_mysql_db_fix.test Fix spelling error 2006-10-07 20:16:57 +02:00
system_mysql_db_refs.test
tablelock.test
temp_table-master.opt
temp_table.test BUG#21096: locking issue ; temporary table conflicts. 2006-08-29 16:59:20 +04:00
timezone-master.opt
timezone.test Fix Bug #9191 "TIMESTAMP/from_unixtime() no longer accepts 2^31-1" 2006-11-01 16:47:40 +03:00
timezone2.test Fix Bug #9191 "TIMESTAMP/from_unixtime() no longer accepts 2^31-1" 2006-11-01 16:47:40 +03:00
timezone3-master.opt
timezone3.test
timezone4-master.opt Fix Bug #9191 "TIMESTAMP/from_unixtime() no longer accepts 2^31-1" 2006-11-01 16:47:40 +03:00
timezone4.test Fix Bug #9191 "TIMESTAMP/from_unixtime() no longer accepts 2^31-1" 2006-11-01 16:47:40 +03:00
timezone_grant.test
truncate.test
type_blob.test Update mysqltest to latest version 2006-10-03 15:33:44 +02:00
type_date.test type_date.test, type_date.result: 2006-09-14 18:45:23 +04:00
type_datetime.test bug #16546 (DATETIME + 0 not always coerced in the same way) 2007-03-22 12:24:56 +04:00
type_decimal.test Fix for bug #13372 (decimal union) 2005-09-27 15:11:39 +05:00
type_enum.test Bug#24660: "enum" field type definition problem 2007-02-12 14:31:44 +01:00
type_float.test fix for bug #19690: ORDER BY eliminates rows from the result 2007-01-31 09:51:05 +04:00
type_nchar.test
type_ranges.test
type_set.test
type_time.test Commenting out testcases which cause type_time.test failure. 2006-01-10 17:57:46 +03:00
type_timestamp.test
type_uint.test
type_year.test
union-master.opt
union.test Bug#15949 union + illegal mix of collations (IMPLICIT + COERCIBLE) 2006-03-01 17:58:01 +04:00
update.test Bug#25126: Wrongly resolved field leads to a crash. 2007-03-04 00:47:42 +03:00
user_var-binlog.test
user_var.test Cset exclude: kaa@polly.local|ChangeSet|20060912122540|09861 2006-09-13 14:41:28 +04:00
varbinary.test
variables-master.opt
variables.test Bug#22645 LC_TIME_NAMES: Statement not replicated 2006-12-05 13:45:21 +04:00
wait_timeout-master.opt Fix wait_timeout (and kill) handling on Mac OS X by cleaning up how 2005-10-11 09:12:12 -07:00
wait_timeout.test bug #15435 (wait_timeout.test fails with the embedded server) 2006-05-14 21:43:22 +05:00
warnings-master.opt --{skip-}merge option added which allows the user to disable merge engine and 2006-07-14 16:26:58 +05:00
warnings.test --{skip-}merge option added which allows the user to disable merge engine and 2006-07-14 16:26:58 +05:00
windows.test Bug#17498 failed to put data file in custom directory use "data directory" option 2006-12-07 17:01:00 +01:00