mariadb/mysql-test/t
unknown 579c2bff63 Fixed bug #27870. The bug that causes crashes manifests itself at some
conditions when executing an equijoin query with WHERE condition
containing a subquery predicate of the form join_attr NOT IN (SELECT ...).

To resolve a problem of the correct evaluation of the expression
  attr NOT IN (SELECT ...)
an array of guards is created to make it possible to filter out some 
predicates of the EXISTS subquery into which the original subquery 
predicate is transformed, in the cases when a takes the NULL value. 
If attr is defined as a field that cannot be NULL than such an array 
is not needed and is not created. 
However if the field a occurred also an an equijoin predicate t2.a=t1.b
and table t1 is accessed before table t2 then it may happen that the 
the EXISTS subquery is pushed down to the condition evaluated just after
table t1 has been accessed. In this case any occurrence of t2.a is 
substituted for t1.b. When t1.b takes the value of NULL an attempt is 
made to turn on the corresponding guard. This action caused a crash as 
no guard array had been created.

Now the code of Item_in_subselect::set_cond_guard_var checks that the guard
array has been created before setting a guard variable on. Otherwise the
method does nothing. It cannot results in returning a row that could be
rejected as the condition t2.a=t1.b will be checked later anyway.        


mysql-test/r/subselect3.result:
  Added a test case for bug #27870.
mysql-test/t/subselect3.test:
  Added a test case for bug #27870.
sql/item_subselect.h:
  Fixed bug #27870. The bug that causes crashes manifests itself at some
  conditions when executing an equijoin query with WHERE condition
  containing a subquery predicate of the form join_attr NOT IN (SELECT ...).
  
  Forced Item_in_subselect::set_cond_guard_var to check that the guard
  array has been created before setting a guard variable on. Otherwise the
  method does nothing.
2007-04-17 17:35:29 -07:00
..
alias.test WL#2930 Adding view and cursor 'protocols' to mysqltest 2005-10-31 12:25:08 +01:00
alter_table-big.test Fix for bug #25044 "ALTER TABLE ... ENABLE KEYS acquires global 'opening 2007-01-19 23:15:59 +03:00
alter_table.test Bug #26794: 2007-03-14 11:54:20 +02:00
analyse.test Merge rolltop.ignatz42.dyndns.org:/mnt/storeage/bug20305/my41-bug20305 2006-09-28 14:32:30 -04:00
analyze.test Add missing drop table 2006-05-29 16:27:45 +02:00
ansi.test Added tests for Bug#14515 2006-05-01 21:30:09 +03:00
archive.test BUG#26138 - REPAIR TABLE with option USE_FRM erases all records in 2007-03-30 13:00:21 +05:00
archive_gis.test Add DROP TABLE before trying to create view (in mysqldump) 2005-10-27 22:45:18 +03:00
auto_increment.test Manually merged 2006-06-17 02:57:50 +04:00
backup-master.sh Make it possible to run mysql-test-run.pl with default test suite in different vardir. 2006-01-24 08:30:54 +01: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
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 several fixes to make tests pass in embedded-server mode 2006-11-13 20:06:45 +04:00
bdb_cache-master.opt
bdb_cache.test
bdb_gis.test Add DROP TABLE before trying to create view (in mysqldump) 2005-10-27 22:45:18 +03:00
bdb_notembedded.test Fixed bug #27870. The bug that causes crashes manifests itself at some 2007-04-17 17:35:29 -07:00
bench_count_distinct.test
bigint.test Bug#19955: unsigned bigint used as signed with MOD function 2006-11-15 12:23:07 -05:00
binary.test Expanding a binary field should result in 0x00-filled positions, not 0x20 2006-03-02 20:49:10 -05:00
binlog-master.opt
binlog.test Fixed new introduced bug in binlog.test with --ps-protocol 2006-02-25 13:24:18 +02:00
blackhole.test Bug#19717: The blackhole engine is returning an OK flag in 2007-02-14 18:35:59 +02:00
bool.test
bootstrap.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-20 12:48:15 +01:00
bulk_replace.test
case.test Merge polly.local:/tmp/20924/bug20294/my41-bug20294 2006-09-13 15:18:14 +04:00
cast.test Merge mysql.com:/usr/home/ram/work/bug23938/my41-bug23938 2007-02-06 13:57:20 +04:00
check.test
client_xml.test Replace win filename s with unix equivalent 2006-02-17 12:07:45 +01:00
comments.test
compare.test Bug #21159: Optimizer: wrong result after AND with different data types 2006-08-15 10:13:17 +03:00
compress.test Fixes to embedded server to be able to run tests with it 2006-02-24 18:34:15 +02:00
connect.test Merge shellback.(none):/home/msvensson/mysql/same_tools/my41-same_tools 2006-10-03 16:14:23 +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 Merge pilot.blaudden:/home/msvensson/mysql/mysql-4.1-maint 2007-04-02 10:42:08 +02:00
create_not_windows.test BUG#19479: mysqldump creates invalid dump 2006-06-04 21:27:41 +03:00
create_select_tmp.test Add new option "check-testcases" to mysql-test-run.pl 2006-01-26 17:54:34 +01:00
csv.test Replace "exec rm" with remove_file and "exec touch" with "write_file" 2007-02-19 15:46:32 +01:00
ctype_big5.test Bug#15375 Unassigned multibyte codes are broken 2005-12-12 21:42:09 +04:00
ctype_collate.test Remove compiler warnings 2006-11-20 22:42:06 +02:00
ctype_cp932.test Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0 2007-03-01 18:12:56 +01:00
ctype_cp932_binlog.test Additional test changes for 2007-02-28 18:13:23 +04:00
ctype_cp932_notembedded.test Fixes to embedded server to be able to run tests with it 2006-02-24 18:34:15 +02:00
ctype_cp1250_ch.test Remove compiler warnings 2006-11-20 22:42:06 +02:00
ctype_cp1251.test
ctype_create.test
ctype_eucjpms.test Bug#15376: Unassigned multibyte codes are converted to U+0000 2006-03-23 14:03:39 +04: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#21620 ALTER TABLE affects other columns 2006-09-29 16:24:11 +05: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 Cleanup test cases that leaves "stuff" behind 2006-04-18 18:10:47 +02:00
ctype_many.test
ctype_mb.test
ctype_recoding.test Merge maint2.mysql.com:/data/localhome/tsmith/bk/41 2006-09-01 08:53:56 +02: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
ctype_uca.test Bug#27079 Crash while grouping empty ucs2 strings 2007-03-27 12:20:20 +05:00
ctype_ucs.test Bug#22638 SOUNDEX broken for international characters 2007-03-28 18:57:30 +05:00
ctype_ucs2_def-master.opt Bug#18743: Several test cases fails if "classic" configuration in 5.0 2007-02-19 13:57:06 +03:00
ctype_ucs2_def.test Bug#18743: Several test cases fails if "classic" configuration in 5.0 2007-02-19 13:57:06 +03:00
ctype_ucs_binlog.test Make it possible to run mysql-test-run.pl with default test suite in different vardir. 2006-01-24 08:30:54 +01:00
ctype_ujis.test Merge mysql.com:/usr/home/bar/mysql-4.1.b15376 2006-03-23 12:41:28 +04:00
ctype_utf8.test Bug#22638 SOUNDEX broken for international characters 2007-03-28 18:57:30 +05:00
date_formats-master.opt
date_formats.test Merge mysql.com:/usr/home/ram/work/bug22029/my41-bug22029 2006-11-22 09:19:51 +04:00
default.test bug #20691 (INSERT (DEFAULT) may insert garbage with NO DEFAULT NOT NULL field) 2007-02-12 15:41:36 +04:00
delayed.test tests fixed to work in embedded server 2007-03-20 17:53:55 +04:00
delete.test Bug #26186: 2007-02-23 18:49:41 +02:00
derived.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-26 11:49:24 +01:00
dirty_close.test
disabled.def enabled and extended single user test 2007-03-23 17:14:38 +01:00
distinct.test Bug #27659: 2007-04-10 16:55:48 +03:00
drop.test Fix for bug#21216 "Simultaneous DROP TABLE and SHOW OPEN TABLES causes 2006-08-21 12:18:59 +04:00
drop_temp_table.test
empty_table.test
endspace.test
errors.test BUG 27513: fixed left-over sql mode from a test case. 2007-04-04 13:38:19 +03:00
exampledb.test
execution_constants.test several fixes to make tests pass in embedded-server mode 2006-11-13 20:06:45 +04:00
explain.test sql_select.cc: 2007-03-08 00:27:42 +03:00
federated.test federated.test: 2006-11-29 13:56:59 -05:00
federated_archive.test
federated_bug_13118.test
fix_priv_tables.test Bug#20589 Missing some table level privileges after upgrade 2006-11-29 12:04:29 +01:00
flush.test Merge mysql.com:/home/hf/work/mysql-4.1-mrg 2006-11-16 23:16:44 +04:00
flush2-master.opt Bug#24805 mtr.pl can't handle test with --disable-log-bin 2007-02-06 14:19:07 +01:00
flush2.test Backport from 5.1, limit SHOW VARIABLES to "log_bin%" 2007-03-23 12:35:30 +01:00
flush_block_commit.test Merge mysql.com:/home/hf/work/mysql-4.1-mrg 2006-11-16 23:16:44 +04:00
flush_block_commit_notembedded.test several fixes to make tests pass in embedded-server mode 2006-11-13 20:06:45 +04:00
flush_read_lock_kill-master.opt
flush_read_lock_kill.test Fix for bug #15623: Test case rpl000001 and rpl_error_ignored_table failure on MacOSX 2005-12-14 21:42:08 +04:00
flush_table.test
foreign_key.test
fulltext.test Bug#18071 Result from MATCH() uses too many decimals 2006-03-22 14:57:24 +01: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 BUG#25729 - boolean full text search is confused by NULLs produced by 2007-04-02 17:26:39 +05:00
fulltext_multi.test
fulltext_order_by.test
fulltext_update.test
fulltext_var.test Add new option "check-testcases" to mysql-test-run.pl 2006-01-26 17:54:34 +01:00
func_compress.test Merge mysql.com:/usr/home/ram/work/bug23254/my41-bug23254 2006-10-13 19:09:22 +05:00
func_concat.test Manually merged 2006-06-14 23:54:08 +04:00
func_crypt.test
func_date_add.test Bug#21811 Odd casting with date + INTERVAL arithmetic 2006-10-02 12:37:01 +02:00
func_default.test
func_des_encrypt.test Add "have_ssl" as synonym for "have_openssl" 2007-03-05 10:03:42 +01:00
func_encrypt-master.opt
func_encrypt.test Add "have_ssl" as synonym for "have_openssl" 2007-03-05 10:03:42 +01:00
func_encrypt_nossl.test
func_equal.test Merge mysql.com:/home/jimw/my/mysql-4.1-12612 2005-12-01 12:07:25 -08:00
func_gconcat.test Bug #26815: 2007-03-27 19:28:04 +03:00
func_group.test Merge mysql.com:/home/ram/work/mysql-5.0-maint 2007-03-29 13:37:07 +05:00
func_if.test Bug#24532 (The return data type of IS TRUE is different from similar 2007-02-12 13:59:29 -07:00
func_in.test Fixed bug #27362: crash at evaluation of IN predicate when one 2007-03-22 00:05:36 -07:00
func_isnull.test
func_like.test
func_math.test Fix for bug#16678 FORMAT gives wrong result if client run with default-character-set=utf8 2006-03-06 12:52:38 +04:00
func_misc.test Bug#26093 (SELECT BENCHMARK() for SELECT statements does not produce valid 2007-03-01 19:20:47 -07:00
func_op.test after merge fix. 2006-04-11 15:26:18 +05:00
func_regexp.test
func_sapdb.test Remove compiler warnings 2006-11-20 22:42:06 +02:00
func_set.test
func_str.test Merge pilot.blaudden:/home/msvensson/mysql/bug25197/my50-bug25197 2007-03-28 09:34:04 +02:00
func_system.test
func_test.test Merge zippy.cornsilk.net:/home/cmiller/work/mysql/bug23411/my41-bug23411 2006-11-06 17:45:47 -05:00
func_time.test Merge polly.local:/tmp/maint/bug20293/my50-bug20293 2007-03-06 20:50:49 +03:00
func_timestamp.test #19409: Test 'func_timestamp' fails on Windows x64 2006-06-22 20:50:38 +02:00
gcc296.test
gis-rtree.test Merge chilla.local:/home/mydev/mysql-4.1-bug25673 2007-03-08 10:10:17 +01:00
gis.test Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0 2007-04-02 10:50:39 +02:00
grant.test Added a test case for bug #6774 "Replication fails with Wrong usage of DB GRANT and GLOBAL PRIVILEGES" 2007-01-24 16:45:30 +03:00
grant2.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-26 11:49:24 +01:00
grant3-master.opt
grant3.test
grant_cache.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-26 11:49:24 +01:00
greedy_optimizer.test Remove compiler warnings 2006-11-20 22:42:06 +02:00
group_by.test Bug#23417: Too strict checks against GROUP BY in the ONLY_FULL_GROUP_BY mode. 2007-01-11 23:18:01 +03:00
group_min_max.test Merge dl145s.mysql.com:/data0/bk/team_tree_merge/mysql-5.0 2006-11-29 11:25:22 +01:00
handler.test Merge mysql.com:/home/hf/work/mysql-4.1.15440 2006-08-20 20:47:32 +05:00
having.test Fixed bug #14927. 2006-05-06 23:48:13 -07:00
heap.test BUG#18233 - Memory tables INDEX USING HASH (a,b) returns 1 row on 2006-05-10 21:50:04 +05:00
heap_auto_increment.test
heap_btree.test After merge fix 2007-03-28 12:11:44 +02:00
heap_hash.test
help.test Test "help": 2007-03-20 19:19:17 +01:00
im_daemon_life_cycle-im.opt Fix of test suite in scope of fixing BUG#18023: IM: instance 2006-06-19 14:13:34 +04:00
im_daemon_life_cycle.imtest BUG#24415: im_daemon_life_cycle.imtest fails 2007-02-23 20:24:32 +03:00
im_life_cycle-im.opt Fix of test suite in scope of fixing BUG#18023: IM: instance 2006-06-19 14:13:34 +04:00
im_life_cycle.imtest Fix for BUG##24415: Instance manager test im_daemon_life_cycle 2006-11-23 22:55:36 +03:00
im_options_set.imtest Preliminary patch for the following bugs: 2006-08-29 15:46:40 +04:00
im_options_unset.imtest Preliminary patch for the following bugs: 2006-08-29 15:46:40 +04:00
im_utils-im.opt Fix of test suite in scope of fixing BUG#18023: IM: instance 2006-06-19 14:13:34 +04:00
im_utils.imtest Fix for BUG##24415: Instance manager test im_daemon_life_cycle 2006-11-23 22:55:36 +03:00
index_merge.test BUG#20256 - LOCK WRITE - MyISAM 2006-09-12 18:25:35 +05:00
index_merge_bdb.test
index_merge_innodb.test BUG#19021, Crash in ROR-index_merge optimizer: 2006-04-13 16:05:32 +04:00
index_merge_innodb2.test
index_merge_ror.test BUG#25048 - ERROR 126 : Incorrect key file for table '.XXXX.MYI'; try to 2006-12-26 17:47:30 +04:00
index_merge_ror_cpk.test
information_schema.test Bug#24630 Subselect query crashes mysqld 2007-02-12 16:06:14 +04:00
information_schema_chmod.test Bug #23125 [patch] trigger test fails when run as root 2006-12-22 00:38:34 +01:00
information_schema_db.test several fixes to make tests pass in embedded-server mode 2006-11-13 20:06:45 +04:00
information_schema_inno.test
init_connect-master.opt
init_connect.test tests fixed to work in embedded server 2007-03-20 17:53:55 +04:00
init_file-master.opt
init_file.test Merge kpdesk.mysql.com:/home/thek/dev/bug23240/my41-bug23240 2007-02-19 10:08:27 +01:00
innodb-big.test
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 Fix for BUG#25507 "multi-row insert delayed + auto increment causes 2007-02-15 15:39:03 +01:00
innodb-ucs2.test Bug#18743: Several test cases fails if "classic" configuration in 5.0 2007-02-19 13:57:06 +03:00
innodb.test NULL MERGE this to 5.1 2007-03-22 14:40:52 -06:00
innodb_cache-master.opt
innodb_cache.test Add new option "check-testcases" to mysql-test-run.pl 2006-01-26 17:54:34 +01:00
innodb_gis.test Add DROP TABLE before trying to create view (in mysqldump) 2005-10-27 22:45:18 +03:00
innodb_handler.test
innodb_mysql-master.opt Added innodb_rollback_on_timeout option to restore the 4.1 2006-12-19 16:57:51 -07:00
innodb_mysql.test Fixed bug #26159. 2007-02-10 23:55:56 -08:00
innodb_notembedded.test Fixes to embedded server to be able to run tests with it 2006-02-24 18:34:15 +02:00
innodb_timeout_rollback-master.opt Added innodb_rollback_on_timeout option to restore the 4.1 2006-12-19 16:57:51 -07:00
innodb_timeout_rollback.test Added innodb_rollback_on_timeout option to restore the 4.1 2006-12-19 16:57:51 -07:00
innodb_unsafe_binlog-master.opt innodb_unsafe_binlog-master.opt: 2006-04-21 20:24:52 +02:00
innodb_unsafe_binlog.test Changes from the innodb-5.0-ss115 snapshot. 2006-01-16 14:32:43 +03:00
insert.test Bug#25123: ON DUPLICATE KEY clause allows fields not from the insert table. 2007-01-22 15:14:38 +03:00
insert_notembedded.test several fixes to make tests pass in embedded-server mode 2006-11-13 20:06:45 +04:00
insert_select-binlog.test
insert_select.test Bug #26207: When making the key image to use 2007-03-22 18:44:16 +02:00
insert_update.test Bug#23233: 0 as LAST_INSERT_ID() after INSERT .. ON DUPLICATE in the 2007-03-30 18:13:33 +04:00
join.test BUG#25106: A USING clause in combination with a VIEW results in column 2007-01-11 19:10:01 +02:00
join_crash.test
join_nested.test BUG#25575: ERROR 1052 (Column in from clause is ambiguous) with sub-join 2007-01-31 16:04:38 +02:00
join_outer.test Fixed bug #26017. 2007-02-09 12:54:50 -08:00
key.test Manual transfer of the following changeset into the 5.0.23 release clone: 2006-06-30 19:37:11 +02:00
key_cache-master.opt
key_cache.test Cleanup after test cases 2006-11-15 10:23:27 +01:00
key_diff.test
key_primary.test
keywords.test Bug#12204 2007-02-07 14:22:19 -08:00
kill.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1-maint 2006-12-08 17:09:43 +01:00
kill_n_check.sh IM test suite fix. 2007-02-24 13:12:20 +03:00
limit.test Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0 2006-11-28 20:59:57 +01:00
loaddata.test Bug#27586: Wrong autoinc value assigned by LOAD DATA in the 2007-04-07 00:13:27 +04:00
loaddata_autocom_innodb.test Fix for BUG#11151 "LOAD DATA INFILE commits transaction in 5.0". 2006-09-05 16:52:05 +02:00
loaddata_autocom_ndb.test Fix for BUG#11151 "LOAD DATA INFILE commits transaction in 5.0". 2006-09-05 16:52:05 +02:00
lock.test Merge mysql.com:/home/mydev/mysql-4.1-bug5390 2006-02-06 15:15:44 +01:00
lock_multi.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-26 11:49:24 +01:00
lock_tables_lost_commit-master.opt
lock_tables_lost_commit.test
log.sh IM test suite fix. 2007-02-24 13:12:20 +03:00
lowercase_fs_off.test Update test cases after run with --check-testcases 2006-11-14 19:45:52 +01:00
lowercase_table-master.opt
lowercase_table.test Bug#20404: SHOW CREATE TABLE fails with Turkish I 2006-10-30 14:40:15 +04:00
lowercase_table2.test Bug#17661 information_schema.SCHEMATA returns uppercase with lower_case_table_names = 1 2006-06-06 11:25:31 +05:00
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
lowercase_view-master.opt
lowercase_view.test
merge.test tests fixed to work in embedded server 2007-03-20 17:53:55 +04:00
metadata.test Bug #20191: getTableName gives wrong or inconsistent result when using VIEWs 2006-11-09 16:55:42 +02:00
mix_innodb_myisam_binlog-master.opt
mix_innodb_myisam_binlog.test Merge siva.hindu.god:/home/tsmith/m/bk/mrg-jan17/50 2007-01-18 10:06:36 -07:00
multi_statement-master.opt
multi_statement.test
multi_update-master.opt
multi_update.test Manually merged 2006-05-29 19:07:35 +04:00
myisam-blob-master.opt
myisam-blob.test
myisam.test Merge chilla.local:/home/mydev/mysql-4.1-axmrg 2007-03-28 10:25:51 +02:00
mysql.test Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0 2007-03-01 18:12:56 +01:00
mysql_client_test.opt SECURITY FIX 2006-05-01 22:10:50 -04:00
mysql_client_test.test Update mysqltest to latest version 2006-10-03 15:33:44 +02:00
mysql_delimiter.sql Bug#19799 delimiter command not working correctly when sourcing a sql file 2006-11-22 01:27:06 -05:00
mysql_delimiter_19799.sql Bug#19799 delimiter command not working correctly when sourcing a sql file 2006-11-21 21:10:02 -05:00
mysql_delimiter_source.sql
mysql_protocols.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
mysql_upgrade.test mysql_upgrade disabled in embedded server 2007-01-03 03:33:26 +04:00
mysqladmin.test Merge pilot.mysql.com:/home/msvensson/mysql/mysql-4.1 2007-01-17 11:13:03 +01:00
mysqlbinlog-cp932-master.opt Force the server restart before running mysqlbinlog-cp932.test to fix PB failures introduced by the patch for bug #18743. 2007-02-22 15:28:42 +03:00
mysqlbinlog-cp932.test tests fixed to work in embedded server 2007-03-20 17:53:55 +04:00
mysqlbinlog-master.opt
mysqlbinlog.test Add correct replace 2007-03-31 17:18:03 +02:00
mysqlbinlog2.test Make it possible to run mysql-test-run.pl with default test suite in different vardir. 2006-01-24 08:30:54 +01:00
mysqlcheck.test Fixed compiler warnings detected by option -Wshadow and -Wunused: 2006-12-15 00:51:37 +02:00
mysqldump-max.test Fix spelling errors in test files 2006-10-24 17:54:45 +02:00
mysqldump.test Minor test cleanup. 2007-04-02 16:21:12 -04:00
mysqlshow.test Bug #19147: mysqlshow INFORMATION_SCHEMA does not work 2006-07-21 20:29:25 -07:00
mysqltest.test Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0 2007-03-01 18:12:56 +01:00
ndb_alter_table.test ndb - bug#14509, part 1: move autoincr pre-fetch from Ndb to local dict cache 2006-05-08 15:19:17 +02:00
ndb_alter_table2.test Bug #13228 open table cache not flushed when table schema changed 2006-01-10 11:35:21 +01:00
ndb_autodiscover.test Make it possible to run mysql-test-run.pl with default test suite in different vardir. 2006-01-24 08:30:54 +01:00
ndb_autodiscover2-master.opt
ndb_autodiscover2.test
ndb_autodiscover3.test Bug#27644 ndb: connecting api node/mysqld may "steal" node_id from running mysqld 2007-04-05 09:12:30 +02:00
ndb_basic.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-26 11:49:24 +01:00
ndb_bitfield.test bug#16125 - ndb bitfield of exact 32 bits, incorrect assertion (i.e. only noticable in debug compiled) 2006-01-02 14:38:38 +01:00
ndb_blob.test ndb - bug#24028 in 5.0 2007-03-21 09:13:05 +01:00
ndb_cache.test
ndb_cache2.test
ndb_cache_multi.test
ndb_cache_multi2.test Bug#16795 ndb_cache_multi2 2006-02-27 10:29:55 +01:00
ndb_charset.test ndb - bug#14007 5.0 *** does not automerge into 5.1 *** 2005-11-16 13:26:26 +01:00
ndb_condition_pushdown.test Bug #21056 ndb pushdown equal/setValue error on datetime: Added missing order by 2006-09-06 11:54:01 +02:00
ndb_config.test Fixed host name comparison (still Bug #17582) 2006-09-13 23:19:18 +02:00
ndb_database.test
ndb_gis.test Add DROP TABLE before trying to create view (in mysqldump) 2005-10-27 22:45:18 +03:00
ndb_grant.later
ndb_index.test
ndb_index_ordered.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-26 11:49:24 +01:00
ndb_index_unique.test Merge mysql.com:/windows/Linux_space/MySQL/mysql-4.1 2006-12-07 15:51:16 +01:00
ndb_insert.test Added tests with IGNORE and NULL values 2006-03-28 10:01:23 +02:00
ndb_limit.test
ndb_load.test Change from std_data to std_data_ln 2006-02-14 17:15:24 +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 Fixed unsafe define of uint4korr() 2007-02-21 13:02:57 +02:00
ndb_minmax.test
ndb_multi.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-26 11:49:24 +01:00
ndb_read_multi_range.test Fix for bug#25821 Excessive partition pruning for multi-range index scan in NDB API: don't set distribution key if multi_range 2007-02-06 23:06:58 +01: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 Fix for bug#18437 "Wrong values inserted with a before update trigger on 2006-07-02 01:51:10 +04:00
ndb_restore.test Bug#27775 mediumint auto_increment with ndb_restore 2007-04-13 01:37:24 +02:00
ndb_restore_print.test medium int printout support 2007-03-08 15:37:53 +07:00
ndb_single_user.test Bug #25275 SINGLE USER MODE prevents ALTER on non-ndb tables for other mysqld nodes 2007-03-28 10:10:27 +02:00
ndb_subquery.test
ndb_transaction.test
ndb_trigger.test Bug #26242 UPDATE with subquery and triggers failing with cluster tables 2007-04-04 12:50:39 +02: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 Merge siva.hindu.god:/home/tsmith/m/bk/mrg-jan17/maint/41 2007-01-18 13:26:48 -07:00
ndb_update.test #18487 UPDATE IGNORE not supported for unique constraint violation of non-primary key: call peek_index_rows 2006-11-30 15:02:33 +01: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 Remove compiler warnings 2006-11-20 22:42:06 +02: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 #26830: a crash for the query with a subselect containing ROLLUP. 2007-03-10 02:47:47 -08:00
openssl_1.test Merge pilot.blaudden:/home/msvensson/mysql/bug25309/my50-bug25309 2007-03-29 11:40:38 +02:00
order_by.test Merge olga.mysql.com:/home/igor/mysql-4.1-opt 2007-04-03 22:24:57 -07:00
order_fill_sortbuf-master.opt
order_fill_sortbuf.test
outfile.test Bug#18628 mysql-test-run: security problem(part1) 2007-02-14 14:44:34 +01:00
overflow.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-26 11:49:24 +01:00
packet.test
perror.test Change error code to test for "unknown error" with to 10000 2006-08-01 11:29:10 +02:00
preload.test
ps-master.opt Bug #19764: SHOW commands end up in the slow log as table scans 2006-10-12 17:10:34 -06:00
ps.test Valgrind error fixes 2007-02-01 18:00:24 +04:00
ps_1general.test bug #25973 (ps_1general.test fails in embedded server) 2007-01-31 16:45:33 +04: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#19356: Assert on undefined @uservar in prepared statement execute 2006-10-04 11:19:23 -04:00
ps_grant.test Merge shellback.(none):/home/msvensson/mysql/same_tools/my41-same_tools 2006-10-03 16:14:23 +02:00
query_cache.test Bug#18628 mysql-test-run: security problem(part1) 2007-02-14 14:44:34 +01:00
query_cache_merge.test
query_cache_notembedded.test Merge kahlann.erinye.com:/home/df/mysql/build/mysql-4.1-build-work 2006-12-19 15:31:10 +01:00
raid.test
range.test BUG#26624, pushbuild fixes: Merge to 5.0 2007-03-31 00:48:31 +04:00
read_only.test Fix for bug #22077 "DROP TEMPORARY TABLE fails with wrong error if read_only is set" 2006-11-20 17:35:23 +03:00
rename.test Merge mysql.com:/home/hf/work/mysql-4.1-mrg 2006-11-16 23:16:44 +04:00
repair.test Merge mysql.com:/home/svoj/devel/mysql/engines/mysql-4.1-engines 2006-10-19 18:04:34 +05:00
replace.test Fixed bug#19789: REPLACE was allowed for a VIEW with CHECK OPTION enabled. 2006-06-07 16:17:56 +04:00
rollback.test
round.test Bug#6147: Traditional: Assigning a string to a numeric column has unexpected results 2006-07-20 13:41:12 +05:00
row.test Merge olga.mysql.com:/home/igor/dev-opt/mysql-4.1-opt-bug27484 2007-04-11 11:57:40 -07:00
rowid_order_bdb.test
rowid_order_innodb.test
rpl000001-slave.opt
rpl000001.test Merge neptunus.(none):/home/msvensson/mysql/mysqltestrun_check_testcases/my50-mysqltestrun_check_testcases 2006-01-27 10:49:07 +01:00
rpl000002.test
rpl000004.test Make it possible to run mysql-test-run.pl with default test suite in different vardir. 2006-01-24 08:30:54 +01:00
rpl000005.test
rpl000006.test
rpl000008-slave.opt
rpl000008.test
rpl000009-slave.opt
rpl000009.test Make it possible to run mysql-test-run.pl with default test suite in different vardir. 2006-01-24 08:30:54 +01:00
rpl000010-slave.opt
rpl000010.test
rpl000011.test
rpl000012.test
rpl000013-slave.opt
rpl000013.test
rpl000015-slave.sh Make it possible to run mysql-test-run.pl with default test suite in different vardir. 2006-01-24 08:30:54 +01:00
rpl000015.slave-mi
rpl000015.test Merge kahlann.erinye.com:/home/df/mysql/build/mysql-4.1-build-work 2006-12-19 15:31:10 +01:00
rpl000017-slave.opt
rpl000017-slave.sh Make it possible to run mysql-test-run.pl with default test suite in different vardir. 2006-01-24 08:30:54 +01:00
rpl000017.test Merge kahlann.erinye.com:/home/df/mysql/build/mysql-4.1-build-work 2006-12-19 15:31:10 +01:00
rpl000018-master.opt
rpl000018-slave.opt
rpl_alter.test
rpl_auto_increment-master.opt
rpl_auto_increment.test Fix for BUG#20524 "auto_increment_* not observed when inserting 2006-07-06 14:37:09 +02:00
rpl_auto_increment_11932.test rpl_auto_increment_11932.test, rpl_auto_increment_11932.result: 2006-05-22 12:18:18 +09:30
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_charset_sjis.test Bug#23619 Incorrectly escaped multibyte characters in binary log break replication 2006-11-09 14:27:34 +04: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 Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0 2006-11-28 20:59:57 +01:00
rpl_delete_all.test
rpl_do_grant.test Bug#24158 SET PASSWORD in binary log fails under ANSI_QUOTES 2006-11-30 11:08:23 +04:00
rpl_drop.test
rpl_drop_db.test Cleanup after test cases 2006-11-15 10:23:27 +01: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 Bug#27070 server logs are created unrequested and in wrong directory 2007-03-20 11:15:15 +01:00
rpl_EE_error.test 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_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 Add new option "check-testcases" to mysql-test-run.pl 2006-01-26 17:54:34 +01:00
rpl_flush_log_loop-master.opt 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_flush_log_loop-master.sh 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_flush_log_loop-slave.opt 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_flush_log_loop-slave.sh 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_flush_log_loop.test
rpl_flush_tables.test Merge shellback.(none):/home/msvensson/mysql/same_tools/my41-same_tools 2006-10-03 16:14:23 +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_revoke-slave.opt BUG#9483 test was overworked to account reviews finally to leave only REVOKE check. 2006-01-10 13:44:08 +02:00
rpl_ignore_revoke.test Cleanup after test cases 2006-11-15 10:23:27 +01:00
rpl_ignore_table-slave.opt Bug#22877 replication character sets get out of 2006-11-01 12:30:01 +04:00
rpl_ignore_table.test Merge pilot.blaudden:/home/msvensson/mysql/bug25482/my41-bug25482-alt2 2007-03-29 14:16:28 +02:00
rpl_init_slave-slave.opt
rpl_init_slave.test Cleanup after test cases 2006-11-15 10:23:27 +01:00
rpl_innodb.test 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_delayed.test Fix for BUG#25507 "multi-row insert delayed + auto increment causes 2007-02-15 15:39:03 +01:00
rpl_insert_id-slave.opt
rpl_insert_id.test Fix for BUG#24432 2007-02-08 15:53:14 +01:00
rpl_insert_ignore-slave.opt
rpl_insert_ignore.test
rpl_insert_select.test
rpl_known_bugs_detection-master.opt Fix for BUG#24432 2007-02-08 15:53:14 +01:00
rpl_known_bugs_detection.test Fix for BUG#24432 2007-02-08 15:53:14 +01:00
rpl_loaddata.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
rpl_loaddata_charset.test Renaming recenly added test case, because of name conflict 2007-03-01 11:52:25 +04:00
rpl_loaddata_rule_m-master.opt
rpl_loaddata_rule_m.test Merge neptunus.(none):/home/msvensson/mysql/mysqltestrun_check_testcases/my50-mysqltestrun_check_testcases 2006-01-27 10:49:07 +01:00
rpl_loaddata_rule_s-slave.opt
rpl_loaddata_rule_s.test Merge neptunus.(none):/home/msvensson/mysql/mysqltestrun_check_testcases/my50-mysqltestrun_check_testcases 2006-01-27 10:49:07 +01: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-07 09:31:53 +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 Cleanup after test cases 2006-11-15 10:23:27 +01:00
rpl_misc_functions-slave.sh 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_misc_functions.test - renaming TMP_TABLE to NON_TRANSACTIONAL_TMP_TABLE because this is 2007-03-22 15:07:32 +01:00
rpl_multi_delete-slave.opt
rpl_multi_delete.test
rpl_multi_delete2-slave.opt
rpl_multi_delete2.test
rpl_multi_query.test
rpl_multi_update.test
rpl_multi_update2-slave.opt
rpl_multi_update2.test
rpl_multi_update3.test Add new option "check-testcases" to mysql-test-run.pl 2006-01-26 17:54:34 +01: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_ndb_innodb_trans-slave.opt Fix for BUG#11151 "LOAD DATA INFILE commits transaction in 5.0". 2006-09-05 16:52:05 +02:00
rpl_ndb_innodb_trans.test Fix for BUG#11151 "LOAD DATA INFILE commits transaction in 5.0". 2006-09-05 16:52:05 +02:00
rpl_openssl.test Add "have_ssl" as synonym for "have_openssl" 2007-03-05 10:03:42 +01: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 Fix for bug #23775 "Replicated event larger that max_allowed_packet infinitely re-transmits". 2007-03-16 17:25:20 +03: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 Bug#24478 DROP TRIGGER is not caught by replicate-*-table filters 2007-02-26 15:25:43 +04:00
rpl_reset_slave.test
rpl_rewrite_db-slave.opt
rpl_rewrite_db.test 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_rotate_logs-master.opt
rpl_rotate_logs-slave.sh 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_rotate_logs.slave-mi
rpl_rotate_logs.test Merge bk-internal.mysql.com:/home/bk/mysql-5.0 2007-01-11 09:43:44 -05:00
rpl_server_id1.test
rpl_server_id2-slave.opt
rpl_server_id2.test
rpl_session_var.test
rpl_set_charset.test
rpl_skip_error-slave.opt
rpl_skip_error.test Add new option "check-testcases" to mysql-test-run.pl 2006-01-26 17:54:34 +01:00
rpl_slave_status.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1-maint 2006-10-07 20:19:57 +02:00
rpl_sp-master.opt
rpl_sp-slave.opt Fix for BUG#14769 "Function fails to replicate if fails half-way (slave stops)": 2006-02-18 17:26:30 +01:00
rpl_sp.test Fix for BUG#19725 "Calls to SF in other database are not replicated 2007-01-08 22:01:06 +01:00
rpl_sp_effects-master.opt
rpl_sp_effects-slave.opt
rpl_sp_effects.test
rpl_sporadic_master-master.opt
rpl_sporadic_master.test
rpl_ssl.test Bug#21781 Replication slave io thread hangs 2007-03-05 10:07:22 +01:00
rpl_start_stop_slave.test
rpl_temporary.test Merge pilot.blaudden:/home/msvensson/mysql/bug20166/my50-bug20166 2007-02-27 14:54:33 +01:00
rpl_timezone-master.opt
rpl_timezone-slave.opt
rpl_timezone.test Cleanup after test cases 2006-11-15 10:23:27 +01:00
rpl_trigger.test Bug#23703 (DROP TRIGGER needs an IF EXISTS) 2006-11-13 15:40:22 -07:00
rpl_trunc_temp.test Update mysqltest to latest version 2006-10-03 15:33:44 +02:00
rpl_until.test Bug#15886 (Test: Timing issue in test "rpl_until"): 2006-05-11 16:29:02 +02:00
rpl_user_variables.test BUG#20141 "User-defined variables are not replicated properly for SF/ 2007-02-23 12:58:56 -05:00
rpl_variables-master.opt
rpl_variables.test Cleanup after test cases 2006-11-15 10:23:27 +01:00
rpl_view-slave.opt Bug#19097: rpl_view failed on some platforms 2006-04-14 12:13:26 +03:00
rpl_view.test Fix of result files from merge 2006-09-21 00:59:48 +02:00
schema.test Patch for WL#2894: Make stored routine variables work 2005-12-07 17:01:17 +03:00
select.test Bug #19372: 2007-04-10 19:08:08 +03:00
select_found.test
select_safe.test
show_check-master.opt Bug #19764: SHOW commands end up in the slow log as table scans 2006-10-12 17:10:34 -06:00
show_check.test Merge mysql.com:/home/hf/work/mysql-4.1-mrg 2006-11-16 23:16:44 +04:00
skip_grants-master.opt
skip_grants.test Bug#26285 selecting information_schema crahes server 2007-03-16 12:15:51 +04:00
skip_name_resolve-master.opt
skip_name_resolve.test skip_name_resolve.result, skip_name_resolve.test: 2005-12-12 16:58:20 +01:00
sp-big.test Patch for WL#2894: Make stored routine variables work 2005-12-07 17:01:17 +03:00
sp-code.test Bug#19194 (Right recursion in parser for CASE causes excessive stack usage, 2006-11-17 12:14:29 -07:00
sp-destruct.test Bug#27144 sp-destruct.test is disabled on Windows 2007-03-21 13:58:11 -04:00
sp-dynamic.test Patch for WL#2894: Make stored routine variables work 2005-12-07 17:01:17 +03:00
sp-error.test Bug#26503 (Illegal SQL exception handler code causes the server to crash) 2007-03-14 12:02:32 -06:00
sp-prelocking.test Remove compiler warnings 2006-11-20 22:42:06 +02:00
sp-security.test Bug#18630: Arguments of suid routine calculated in wrong security 2006-07-13 17:12:31 +04:00
sp-threads.test Fixes to embedded server to be able to run tests with it 2006-02-24 18:34:15 +02:00
sp-ucs2.test Bug#18743: Several test cases fails if "classic" configuration in 5.0 2007-02-19 13:57:06 +03:00
sp-vars.test Bug#12976 (stored procedures local variables of type bit) 2007-02-06 16:01:22 -07:00
sp.test Corrected error in test case: 2007-03-27 18:05:17 +02:00
sp_notembedded.test Update tests and result files after running with new mysqltest that better detects problems with test files 2006-10-04 13:09:37 +02:00
sp_stress_case.test minor cleanup 2006-12-11 18:52:24 -07:00
sp_trans.test Bug#10656 Stored Procedure - Create index and Truncate table command error 2006-03-09 12:08:23 +01:00
sql_mode.test sql_mode.test: 2006-04-27 21:59:04 +09:30
ssl.test Add "have_ssl" as synonym for "have_openssl" 2007-03-05 10:03:42 +01:00
ssl_compress.test Add "have_ssl" as synonym for "have_openssl" 2007-03-05 10:03:42 +01:00
ssl_connect.test Add "have_ssl" as synonym for "have_openssl" 2007-03-05 10:03:42 +01:00
status.test Merge mysql.com:/home/hf/work/mysql-4.1-mrg 2006-11-16 23:16:44 +04:00
strict.test Bug#27069 set with identical elements are created(additional fix) 2007-04-10 15:01:04 +05:00
strict_autoinc_1myisam.test Bug#20573 2006-08-30 13:20:39 -07:00
strict_autoinc_2innodb.test Bug#20573 2006-08-30 13:20:39 -07:00
strict_autoinc_3heap.test Bug#20573 2006-08-30 13:20:39 -07:00
strict_autoinc_4bdb.test Bug#20573 2006-08-30 13:20:39 -07:00
strict_autoinc_5ndb.test Bug#20573 2006-08-30 13:20:39 -07:00
subselect.test subselect.test, subselect.result: 2007-04-15 09:22:45 +04:00
subselect2.test * Bug #20792: Incorrect results from aggregate subquery 2006-07-26 19:19:30 +03:00
subselect3.test Fixed bug #27870. The bug that causes crashes manifests itself at some 2007-04-17 17:35:29 -07:00
subselect_gis.test
subselect_innodb.test Add new option "check-testcases" to mysql-test-run.pl 2006-01-26 17:54:34 +01:00
subselect_notembedded.test Fixes to embedded server to be able to run tests with it 2006-02-24 18:34:15 +02:00
sum_distinct-big.test
sum_distinct.test
symlink.test Valgrind error fixes 2007-02-01 18:00:24 +04:00
synchronization.test
sysdate_is_now-master.opt BUG#15101 SYSDATE() disregards SET TIMESTAMP. 2006-03-10 16:47:56 +02:00
sysdate_is_now.test BUG#15101 SYSDATE() disregards SET TIMESTAMP. 2006-03-10 16:47:56 +02:00
system_mysql_db.test
system_mysql_db_fix30020-master.opt Rename system_mysql_db_fix.test to system_mysql_db_fix30020 as it tests 2006-11-21 15:31:11 +01:00
system_mysql_db_fix30020.test Rename system_mysql_db_fix.test to system_mysql_db_fix30020 as it tests 2006-11-21 15:31:11 +01:00
system_mysql_db_fix40123-master.opt Rename system_mysql_db_fix.test to system_mysql_db_fix30020 as it tests 2006-11-21 15:31:11 +01:00
system_mysql_db_fix40123.test Rename system_mysql_db_fix.test to system_mysql_db_fix30020 as it tests 2006-11-21 15:31:11 +01:00
system_mysql_db_refs.test
tablelock.test
temp_table-master.opt Make it possible to run mysql-test-run.pl with default test suite in different vardir. 2006-01-24 08:30:54 +01:00
temp_table.test Bug #24791: Union with AVG-groups generates wrong results 2007-03-22 10:56:47 +01: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 Merge mysql.com:/home/cps/mysql/trees/4.1-runtime-bug9191 2006-11-01 17:35:35 +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 Fix for bug#15153 "CONVERT_TZ() is not allowed in all places in VIEWs". 2006-04-22 11:54:25 +04:00
trigger-compat.test Merge neptunus.(none):/home/msvensson/mysql/mysqltestrun_check_testcases/my50-mysqltestrun_check_testcases 2006-01-27 10:49:07 +01:00
trigger-grant.test Use binary file mode when writing the modified .TRG file to avoid CR/LF's being added on windows 2007-02-26 09:24:03 +01:00
trigger-trans.test Fix for bug #18153 "ALTER/OPTIMIZE/REPAIR on transactional tables corrupt 2006-03-24 14:58:18 +03:00
trigger.test sql_insert.cc: 2007-03-20 00:46:19 +03:00
truncate.test Bug#5507: TRUNCATE does not work with views. 2007-04-12 23:21:37 +05:00
type_binary.test Bug#14171: Wrong internal default value for a BINARY field. 2007-01-09 22:35:30 +03:00
type_bit.test Increased heap max length to > 4G for 64 bit machines 2006-11-28 00:47:21 +02:00
type_bit_innodb.test Bug #13601: Wrong int type for bit 2006-04-04 17:54:58 -07:00
type_blob.test Bug#18628 mysql-test-run: security problem(part1) 2007-02-14 14:44:34 +01:00
type_date.test type_date.test, type_date.result: 2006-09-14 18:45:23 +04:00
type_datetime.test Merge mysql.com:/home/hf/work/mrg/mysql-4.1-opt 2007-03-22 12:26:32 +04:00
type_decimal.test Bug#22138: Unhandled NULL caused server crash 2006-10-11 19:44:12 +04:00
type_enum.test Bug#24660: "enum" field type definition problem 2007-02-12 14:31:44 +01:00
type_float.test Merge mysql.com:/home/ram/work/b19690/b19690.4.1 2007-01-31 10:07:56 +04:00
type_nchar.test
type_newdecimal-big.test Patch for WL#2894: Make stored routine variables work 2005-12-07 17:01:17 +03:00
type_newdecimal.test Fix for bug #24558: Increasing decimal column length causes data loss 2007-03-15 12:06:06 +04:00
type_ranges.test
type_set.test Bug#27069 set with identical elements are created 2007-04-02 15:01:19 +05:00
type_time.test Commenting out testcases which cause type_time.test failure. 2006-01-10 17:57:46 +03:00
type_timestamp.test bug #20910 (NOT NULL reported as NULL for TIMESTAMP) 2006-08-08 13:34:27 +05:00
type_uint.test
type_varchar.test Convert "system cp" to portable mysqltest commands 2007-02-23 18:05:32 +01:00
type_year.test Fix for bugs 2007-03-29 09:08:30 +05:00
udf.test Bug #25382: Passing NULL to an UDF called from stored procedures 2007-01-18 17:33:38 +02:00
union-master.opt
union.test Bug#23345: Wrongly allowed INTO in a non-last select of a UNION. 2007-03-21 21:54:38 +03:00
update.test Merge epotemkin@bk-internal.mysql.com:/home/bk/mysql-4.1-opt 2007-03-05 23:33:57 +03:00
user_limits.test
user_var-binlog.test Make it possible to run mysql-test-run.pl with default test suite in different vardir. 2006-01-24 08:30:54 +01:00
user_var.test Fixed bug#16861: User defined variable can have a wrong value if a tmp table was 2007-01-09 23:24:56 +03:00
utils.sh Fix for BUG##24415: Instance manager test im_daemon_life_cycle 2006-11-23 22:55:36 +03:00
varbinary.test Bug #23125 [patch] trigger test fails when run as root 2006-12-22 00:38:34 +01:00
variables.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-20 16:24:38 +01:00
view.test Bug#5507: TRUNCATE does not work with views. 2007-04-12 23:21:37 +05:00
view_grant.test Bug#26813: The SUPER privilege is wrongly required to alter a view created by 2007-03-22 22:05:19 +03:00
view_query_cache.test We should not skip temptable view along with other derived 2005-12-01 12:01:38 +02:00
wait_for_process.sh IM test suite fix. 2007-02-24 13:12:20 +03:00
wait_for_socket.sh bug in im* tests - missing --no-defaults in the mysql command line 2007-03-23 22:16:32 +02:00
wait_timeout-master.opt Bug#2845 client fails to reconnect if using TCP/IP 2006-02-16 12:02:38 +01:00
wait_timeout.test Added two possible error cases for a test. 2007-01-10 16:55:53 +02:00
warnings-master.opt Merge patch for bug #15195 from 5.0 -> 5.0-release (for 5.0.24) 2006-07-21 09:53:12 +02:00
warnings.test Bug #20778: strange characters in warning message 1366 when called in SP 2006-09-27 19:26:25 -04: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
xa.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-26 11:49:24 +01:00