mariadb/mysql-test/t
unknown c5df4b3092 BUG#31277 - myisamchk --unpack corrupts a table
With certain data sets (when compressed record length gets bigger than
uncompressed) myisamchk --unpack may corrupt data file.

Fixed that record length was wrongly restored from compressed table.


myisam/mi_check.c:
  With compressed tables compressed record length may be bigger than
  pack_reclength, thus we may allocate insufficient memory for record
  buffer.
  
  Let single function allocate record buffer, performing needed record
  length calculations.
  
  Still, it is not doable with parallel repair, as it allocates needed
  record buffers at once. For parellel repair added better record length
  calculation.
myisam/mi_open.c:
  When calculating record buffer size, take into account that compressed
  record length may be bigger than uncompressed.
myisam/mi_packrec.c:
  With certain data set share->max_pack_length (compressed record length)
  may be bigger than share->base.pack_reclength (packed record length).
  
  set_if_bigger(pack_reclength, max_pack_length) in this case causes
  myisamchk --unpack to write extra garbage, whereas pack_reclength
  remains the same in new index file. As a result we get unreadable
  table.
myisam/myisamchk.c:
  With compressed tables compressed record length may be bigger than
  pack_reclength, thus we may allocate insufficient memory for record
  buffer.
  
  Let single function allocate record buffer, performing needed record
  length calculations.
mysql-test/mysql-test-run.pl:
  Environment variables to execute myisamchk and myisampack.
mysql-test/r/myisampack.result:
  New BitKeeper file ``mysql-test/r/myisampack.result''
mysql-test/t/myisampack.test:
  New BitKeeper file ``mysql-test/t/myisampack.test''
2007-11-07 12:55:28 +04:00
..
alias.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
alter_table.test Fixed bug #20710. 2007-04-29 00:50:33 +05: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 Don't allow BACKUP TABLE to overwrite files 2003-03-10 11:22:37 +02:00
backup.test A fix for the broken 4.1-runtime tree. 2007-01-16 21:23:52 +03:00
bdb-alter-table-1.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bdb-crash.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bdb-deadlock.test WL#3475 (Threads for the embedded server in mysqltest) 2006-10-23 15:02:51 +05:00
bdb-deadlock.tminus Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 fixed bdb transaction with query cache bug 2002-11-06 00:41:25 +02:00
bdb_cache.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bench_count_distinct.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bigint.test Fix for BUG #11642: [Patch]es x86 Assembler and text relocations 2005-08-08 13:18:18 +03:00
binary.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
blackhole.test BUG#27998 - mysqld crashed when executing INSERT DELAYED 2007-04-28 14:37:40 +05:00
bool.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bulk_replace.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
case.test Cset exclude: kaa@polly.local|ChangeSet|20060912122540|09861 2006-09-13 14:41:28 +04:00
cast.test Bug#23656: Wrong conversion result of a DATETIME to integer using CAST function. 2007-05-04 00:53:37 +04:00
check.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
comments.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
compare.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
connect.test Update mysqltest to latest version 2006-10-03 15:33:44 +02:00
consistent_snapshot.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
constraints.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
count_distinct.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
count_distinct2-master.opt Updated manual about embedded version. 2001-10-08 04:58:07 +03:00
count_distinct2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
count_distinct3.test Bug#8663 cant use bgint unsigned as input to cast 2006-06-14 13:40:21 +05:00
create.test Cset exclude: tsmith@siva.hindu.god|ChangeSet|20070328212513|13373 2007-04-02 10:39:23 +02:00
create_select_tmp.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_create.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Two separate startup arguments for mysqld: 2003-05-21 12:26:35 +05:00
ctype_latin1_de.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_latin2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_mb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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#31159 - fulltext search on ucs2 column crashes server 2007-10-24 16:09:30 +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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Simplified 'wrong xxx name' error messages by introducing 'general' ER_WRONG_NAME error 2003-11-03 14:01:59 +02:00
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#30385: Server crash when deleting with ORDER BY and LIMIT 2007-09-10 16:26:51 +04:00
derived.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
dirty_close.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
drop_temp_table.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
empty_table.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
endspace.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
errors.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
exampledb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
foreign_key.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext.test BUG#25951 - ignore/use index does not work with fulltext 2007-04-13 02:31:34 +05:00
fulltext2.test BUG#16489 - utf8 + fulltext leads to corrupt index file. 2006-01-23 17:15:33 +04:00
fulltext_cache.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_distinct.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_order_by.test BUG#11869: part2: post-review fixes: 2005-08-07 21:03:45 +00:00
fulltext_update.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_var.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_default.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_des_encrypt.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_encrypt-master.opt added --loose to --des-key-file in *.opt for mysql-test not to fail w/o ssl 2002-05-14 16:36:08 +02:00
func_encrypt.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_encrypt_nossl.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_equal.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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_system.result, func_system.test: 2005-08-08 19:09:54 +05:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
gcc296.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
gis-rtree.test Bug#25673 - spatial index corruption, error 126 2007-03-08 09:54:37 +01:00
gis.test Bug #27164: not reseting the data pointer 2007-03-26 13:17:40 +03:00
grant.test Fix for bug #27515: DROP previlege is not required anymore for RENAME TABLE 2007-04-17 16:52:50 +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 #29717 INSERT INTO SELECT inserts values even if 2007-07-31 10:46:04 +05:00
handler.test Bug #15440 (handler.test hangs in embedded mode) 2006-07-25 18:02:42 +05:00
having.test Fixed bug #29911. 2007-07-20 22:56:19 -07:00
heap.test Remove 'delayed' to make the test deterministic (already 2006-02-23 23:41:15 +03:00
heap_auto_increment.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
heap_btree.test BUG#30590 - delete from memory table with composite btree primary key 2007-09-13 15:39:16 +05:00
heap_hash.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
help.test Test "help": 2007-03-20 19:36:11 +01:00
init_connect-master.opt Portability fixes found during 5.0 test compilation 2003-12-21 19:39:32 +02:00
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 - renamed mysql-test/t/init_file.sql to mysql-test/std_data/init_file.dat 2004-02-05 23:36:54 +01:00
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 Moved testing of binlog_cache_use/binlog_cache_disk_use statistical variables from 2004-05-19 17:43:50 +04:00
innodb-replace.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
innodb.test embedded-mode tests fixed 2006-11-13 10:39:15 +04:00
innodb_cache-master.opt Fixed sleep time in mysql-test-run 2001-12-13 02:31:19 +02:00
innodb_cache.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
innodb_handler.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
innodb_mysql.test Backport of the 5.0 patch to 4.1 2007-10-04 14:22:35 +04:00
insert.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
insert_select-binlog.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
insert_select.test Bug #29717 INSERT INTO SELECT inserts values even if 2007-07-31 10:46:04 +05: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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
join.test Bug #27531: the 4.1 fix. 2007-05-04 16:43:29 +03:00
join_crash.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Support for variables with components 2003-07-06 19:09:57 +03:00
key_cache.test Fixed bug #19079. 2006-04-18 20:57:31 -07:00
key_diff.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
key_primary.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
keywords.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 loaddata.result, loaddata.test: 2007-07-03 21:45:20 +05: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 Fix test case 2003-08-19 16:03:18 +03:00
lock_tables_lost_commit.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added CREATE TEMPORARY TABLES and LOCK TABLES to db and host tables 2002-09-16 15:55:19 +03:00
lowercase_table.test Fix handling of filenames that start the same as reserved filenames 2005-08-31 18:32:15 -07:00
lowercase_table2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
lowercase_table3-master.opt Ensure that one can't from the command line set a variable too small. (Bug #2710) 2004-03-06 10:43:35 +02:00
lowercase_table3.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
lowercase_table_grant-master.opt Always lowercase database names from 'host' and 'db' grant tables when they 2005-02-15 13:36:46 -08:00
lowercase_table_grant.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
lowercase_table_qcache-master.opt fixed comparation of tables/database names with --lower_case_table_names (BUG#2880) 2004-02-20 22:44:54 +02:00
lowercase_table_qcache.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
merge.test BUG#24342 - Incorrect results with query over MERGE table 2007-04-11 01:40:35 +05:00
metadata.test Fix mysql_info() returning bad data in the results of a multi-statement 2005-08-10 18:32:17 -07:00
mix_innodb_myisam_binlog-master.opt Fix for BUG##5714 "Insert into MyISAM table and select ... for update]": 2004-11-04 19:19:23 +01:00
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 Log each slow query in a multi-statement query to the slow query log. 2005-02-17 11:48:44 -08:00
multi_statement.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
multi_update-master.opt A fix for a bug in multi-table updates which was always caused 2003-04-02 17:05:34 +03:00
multi_update.test Fixed bug#19225: unchecked error results in server crash 2006-05-29 00:32:59 +04:00
myisam-blob-master.opt Fixed table crash bug when updating row > 16M (Bug #2159) 2004-01-15 21:39:56 +01:00
myisam-blob.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
myisam.test Bug#26231 - select count(*) on myisam table returns wrong value 2007-03-16 10:28:48 +01:00
myisampack.test BUG#31277 - myisamchk --unpack corrupts a table 2007-11-07 12:55:28 +04: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 Test for mysqlbinlog 2003-09-24 23:25:58 +04:00
mysqlbinlog.test Merge neptunus.(none):/home/msvensson/mysql/my41-bug21218 2006-08-03 11:57:52 +02:00
mysqlbinlog2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
mysqldump.test BUG#13926: --order-by-primary fails if PKEY contains quote character. 2006-11-21 11:09:33 +04:00
mysqltest.test WL#3232 mysqltest, enable --source $variables/<remaining_path_to_file> 2007-06-19 11:06:02 +02:00
ndb_alter_table.test Updated expected error 2005-11-25 10:41:22 +01:00
ndb_autodiscover.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_autodiscover2-master.opt Added test(s) for auto discover of frm file 2004-05-17 09:53:13 +02:00
ndb_autodiscover2.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_grant.later Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_index.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_index_ordered.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_limit.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_restore.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_subquery.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_transaction.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 null_key.result, null_key.test: 2005-07-31 04:28:01 -07:00
odbc.test BUG#14553: NULL in WHERE resets LAST_INSERT_ID 2006-07-10 16:27:03 +03:00
olap.test Fix in comments. 2007-04-29 18:28:58 -07:00
openssl_1.test Remove extra ; 2005-09-05 12:33:25 +02:00
order_by.test Improved coverage for the code added to fix bug 27532. 2007-04-03 19:45:37 -07:00
order_fill_sortbuf-master.opt Updated manual about embedded version. 2001-10-08 04:58:07 +03:00
order_fill_sortbuf.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
outfile.test Bug #28193 outfile fails randomly in pushbuild 2007-05-09 10:49:11 +02:00
overflow.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
packet.test Skip two tests that fail on Windows that just reflect limitations of 2005-08-03 17:38:55 -07:00
preload.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps.test Fixed bug #27937: crash for the the second execution of a prepared 2007-05-14 16:41:09 -07:00
ps_1general.test Update mysqltest to latest version 2006-10-03 15:33:44 +02:00
ps_2myisam.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_3innodb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_4heap.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_5merge.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_6bdb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_7ndb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_10nestset.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Bug #27792 query cache returns wrong result, with certain system variables 2007-05-08 09:09:25 +02:00
query_cache_merge.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
query_cache_notembedded.test remove hard-coded socket paths from some tests 2006-12-19 15:10:15 +01:00
raid.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
range.test BUG#26624: high mem usage (crash) in range optimizer 2007-03-31 00:29:18 +04:00
rename.test Merge bk@192.168.21.1:mysql-4.1 2006-11-16 20:44:37 +04:00
repair.test Fixed the test case for bug #31174 to not fail on 64-bit platforms. 2007-10-17 10:29:51 +04:00
replace.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rollback.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
row.test Bug#27704: incorrect comparison of rows with NULL components 2007-04-20 15:14:09 +05:00
rpl000001-slave.opt Ensure that innodb is created for the first replication test as the slave-timeout is lower for future tests and this failed on some slower machines 2003-12-02 13:32:05 +02:00
rpl000001.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl000002.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000004.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000005.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000006.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000008-slave.opt Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000008.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000009-slave.opt Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000009.test Fix incorrect spellings of "dropped" in source and tests. (Bug #12828) 2005-08-30 12:24:37 -07:00
rpl000010-slave.opt
rpl000010.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000011.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000012.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000013-slave.opt
rpl000013.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000015-slave.sh Fix that mysqladmin shutdown can be interrupted with ^C 2001-11-03 15:18:09 +02:00
rpl000015.slave-mi merge with 3.23 to get corrected error message files and rename of files in mysql-test 2003-02-26 00:22:35 +02:00
rpl000015.test remove hard-coded socket paths from some tests 2006-12-19 15:10:15 +01:00
rpl000017-slave.opt
rpl000017-slave.sh SCRUM: Main change for Secure connection handling. Still needs some more coding. Commit 2002-11-24 17:07:53 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_change_master.test Bug #29116: Test "rpl_change_master" returns different 2007-06-19 13:19:20 +03: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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_create_database-master.opt Bug#6391 (binlog-do-db rules ignored) 2004-12-03 12:13:51 +01:00
rpl_create_database-slave.opt Bug#6391 (binlog-do-db rules ignored) 2004-12-03 12:13:51 +01:00
rpl_create_database.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_ddl.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_deadlock-slave.opt Fix for BUG#8325 "Deadlock in replication thread stops replication": 2005-03-02 11:29:48 +01:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_do_grant.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_drop.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_drop_db.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
rpl_drop_temp-slave.opt 1) undoing my fix for BUG#8055 "Trouble with replication from temporary tables and ignores" 2005-02-14 23:47:17 +01:00
rpl_drop_temp.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
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 Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_error_ignored_table-slave.opt Fix for BUG#2983 "If statement was killed on master, slave errors despite replicate-wild-ignore-t" 2004-03-11 17:38:19 +01:00
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 Simpler arena swapping code 2004-11-08 01:13:54 +02:00
rpl_failed_optimize.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_flush_log_loop-master.opt Fix MySQL Test so it will not depend on current host in log file naming. 2002-09-15 02:17:20 +04:00
rpl_flush_log_loop-master.sh Repeatable test case in mysql-test format for flush-logs problem with 2002-09-05 01:36:49 +04:00
rpl_flush_log_loop-slave.opt Fix MySQL Test so it will not depend on current host in log file naming. 2002-09-15 02:17:20 +04:00
rpl_flush_log_loop-slave.sh Repeatable test case in mysql-test format for flush-logs problem with 2002-09-05 01:36:49 +04:00
rpl_flush_log_loop.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_flush_tables.test Update mysqltest to latest version 2006-10-03 15:33:44 +02:00
rpl_free_items-slave.opt test suite for bug Bug#3969 (commited separetely because it took too long time to parse it on 3.23) 2004-06-11 16:25:18 +03:00
rpl_free_items.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_get_lock.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_ignore_grant-slave.opt Fix so that SET PASSWORD is not replicated by the slave if running with 2003-08-02 23:46:26 +02:00
rpl_ignore_grant.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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#25482 GRANT statements are not replicated if you use "replicate-ignore-table" 2007-03-29 14:12:32 +02:00
rpl_init_slave-slave.opt Fixed test for 'init_slave' variable 2003-12-08 12:10:30 +04:00
rpl_init_slave.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_innodb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_insert_id-slave.opt My changes to test rpl_insert_id in 4.0 about replication of foreign_key_checks 2003-07-26 23:14:09 +02:00
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 A .test for BUG#6287 "Slave skips auto_increment values in Replication with InnoDB" 2004-12-16 23:14:41 +01:00
rpl_insert_ignore.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_insert_select.test The earlier commit for BUG#10456 did not add the test file 2005-08-02 15:15:28 -06:00
rpl_loaddata.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
rpl_loaddata_rule_m-master.opt First commit for fixing BUG#1100 2003-08-20 23:24:45 +02:00
rpl_loaddata_rule_m.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_loaddata_rule_s-slave.opt First commit for fixing BUG#1100 2003-08-20 23:24:45 +02:00
rpl_loaddata_rule_s.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Result updates after Dmitri's and my changes to logging with --log-slave-updates. 2003-08-21 00:23:39 +02:00
rpl_log.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
rpl_log_pos.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_many_optimize.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_master_pos_wait.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Proper replication of CONNECTION_ID() and 4.1 PASSWORD() (bugs 177 and 344), 2003-05-13 22:50:28 +02:00
rpl_misc_functions.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_multi_delete-slave.opt Fix for BUG#2527 "Multi-Table Delete - Not Replication use replicate-wild-do-table" 2004-01-29 19:22:29 +01:00
rpl_multi_delete.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_multi_update.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_multi_update2-slave.opt Bug#7011 2005-01-30 10:24:03 +00:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_openssl.test Fix for bug#13605 'rpl_openssl' test hangs 2005-10-06 19:51:08 +05:00
rpl_optimize.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_redirect.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_relayrotate-slave.opt Replication: new code to not modify in-memory log positions until the COMMIT 2003-04-24 15:29:25 +02:00
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 Changed prototype of killed_ptr() to make it more portable 2004-05-26 19:12:49 +03:00
rpl_relayspace.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_replicate_do-slave.opt Small improvement to alloc_root 2002-11-16 20:19:10 +02:00
rpl_replicate_do.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
rpl_reset_slave.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_rewrite_db-slave.opt BUG#6353 V2: 2004-11-15 17:03:54 +01:00
rpl_rewrite_db.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_rotate_logs-master.opt WL#912 (more user control on relay logs): 2003-07-06 17:59:54 +02:00
rpl_rotate_logs-slave.sh merge with 3.23 2002-08-24 02:10:49 +03:00
rpl_rotate_logs.slave-mi change 'slave-master-info.opt' to .slave-mi to avoid problems with long filenames on some OS 2003-02-26 00:04:13 +02:00
rpl_rotate_logs.test remove hard-coded socket paths from some tests 2006-12-19 15:10:15 +01:00
rpl_server_id1.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_server_id2-slave.opt A new option --replicate-same-server-id to force a slave to execute queries originating from itself 2004-04-28 18:24:46 +02:00
rpl_server_id2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_set_charset.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_skip_error-slave.opt slave-skip-errors 2001-12-12 18:55:33 -07:00
rpl_skip_error.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_slave_status.test Fix spelling error 2006-10-07 20:16:57 +02:00
rpl_sporadic_master-master.opt fixed message in post-commit trigger 2001-06-28 18:22:29 -06:00
rpl_sporadic_master.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_start_stop_slave.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 WL#1264 "Per-thread time zone support infrastructure". 2004-06-18 10:11:31 +04:00
rpl_timezone-slave.opt WL#1264 "Per-thread time zone support infrastructure". 2004-06-18 10:11:31 +04:00
rpl_timezone.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_trunc_binlog.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
select.test Fix for bug #22533: Traditional: Too-long bit value not rejected. 2006-12-06 16:32:12 +04:00
select_found.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
select_safe.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Allow hostnames that are IP addresses with a netmask even when 2005-02-14 20:33:14 -08:00
skip_name_resolve.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Bug#28553 mysqld crash in "purge master log before(select time from information_schema)" 2007-06-06 18:29:15 +05:00
subselect2.test * Bug #20792: Incorrect results from aggregate subquery 2006-07-26 19:19:30 +03:00
subselect_gis.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
subselect_innodb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
symlink.test Valgrind error fixes 2007-02-01 18:00:24 +04:00
synchronization.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
system_mysql_db.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
system_mysql_db_fix-master.opt Portability fixes 2004-04-30 00:14:56 +03:00
system_mysql_db_fix.test Fix spelling error 2006-10-07 20:16:57 +02:00
system_mysql_db_refs.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
tablelock.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
temp_table-master.opt Make sure that the filename for temporary tables is built with fn_format() 2005-03-01 19:05:48 -08:00
temp_table.test BUG#21096: locking issue ; temporary table conflicts. 2006-08-29 16:59:20 +04:00
timezone-master.opt Fixed problem with mysql prompt when server disconnect. (Bug 356) 2003-05-27 16:40:14 +03:00
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 Fix for bug #6387 "Queried timestamp values do not match the inserted 2004-11-03 17:59:03 +00:00
timezone3.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
truncate.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
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 Fixed bug #29251. 2007-06-27 03:41:50 +05: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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_ranges.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_set.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_time.test Commenting out testcases which cause type_time.test failure. 2006-01-10 17:57:46 +03:00
type_timestamp.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_uint.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_year.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
union-master.opt QUERY_NO_GOOD_INDEX_USED and QUERY_NO_INDEX_USED moved from thd->lex.select_lex->options to thd->server_status 2003-12-06 23:21:09 +01:00
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 Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
user_var.test Cset exclude: kaa@polly.local|ChangeSet|20060912122540|09861 2006-09-13 14:41:28 +04:00
varbinary.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
variables-master.opt Give warning if MySQL doesn't honor given storage engine 2003-05-13 11:15:11 +03:00
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