mariadb/mysql-test/t
Gleb Shchepa 2c53f10969 Bug #37799: SELECT with a BIT column in WHERE clause
returns unexpected result

If:
  1. a table has a not nullable BIT column c1 with a length
     shorter than 8 bits and some additional not nullable
     columns c2 etc, and
  2. the WHERE clause is like: (c1 = constant) AND c2 ...,
the SELECT query returns unexpected result set.


The server stores BIT columns in a tricky way to save disk
space: if column's bit length is not divisible by 8, the
server places reminder bits among the null bits at the start
of a record. The rest bytes are stored in the record itself,
and Field::ptr points to these rest bytes.

However if a bit length of the whole column is less than 8,
there are no remaining bytes, and there is nothing to store in
the record at its regular place. In this case Field::ptr points
to bytes actually occupied by the next column in a record.
If both columns (BIT and the next column) are NOT NULL,
the Field::eq function incorrectly deduces that this is the
same column, so query transformation/equal item elimination
code (see build_equal_items_for_cond) may mix these columns
and damage conditions containing references to them.
2008-08-28 02:10:37 +05:00
..
alias.test
almost_full.test Bug #31305 myisam tables crash when they are near capacity. 2007-11-12 13:00:22 +04: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#29957 - alter_table.test fails 2007-07-27 14:30:25 +05:00
analyse.test Merge rolltop.ignatz42.dyndns.org:/mnt/storeage/bug20305/my41-bug20305 2006-09-28 14:32:30 -04:00
analyze.test Fix for bug #30495: optimize table t1,t2,t3 extended errors 2007-11-21 11:11:22 +04:00
ansi.test
archive-big.test BUG#15787 - MySQL crashes when archive table exceeds 2GB 2007-06-24 19:44:54 +05:00
archive.test after-merge fixup: archive test/result adjusted. 2007-11-27 21:30:00 +04:00
archive_gis.test
auto_increment.test
backup-master.sh
backup.test Remove unportable "system rm" 2007-08-29 12:44:43 +02: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 Bug #30825: Problems when putting a non-spatial index on a GIS column 2007-10-10 16:26:02 +03:00
bdb_notembedded.test ndb - bug#31477 - 5.0 2008-01-27 16:41:29 +01:00
bench_count_distinct.test
bigint.test Merge mysql.com:/home/kent/bk/bug30069/mysql-4.1-build 2007-11-12 13:13:43 +01:00
binary.test Fixed bug #29087. This bug manifested itself for queries that performed 2007-06-25 22:44:22 -07:00
binlog-master.opt
binlog.test Bug#33798 prepared statements improperly handle large unsigned ints 2008-02-08 08:55:55 -02:00
binlog_index.test Bug #18199 PURGE BINARY LOGS fails silently with missing logs; 2008-03-17 20:19:04 +02:00
binlog_innodb.test Bug #30604: different flagging of time_zone_used in normal 2008-02-19 17:27:18 +02:00
binlog_killed.test bug#27571 2007-11-06 20:31:40 +02:00
binlog_killed_simulate-master.opt Bug #27571 asynchronousity in setting mysql_query::error and 2007-10-29 15:20:59 +02:00
binlog_killed_simulate.test bug#27571 2007-11-06 13:53:26 +02:00
binlog_start_comment.test Various fixes to make tests pass on Windows. 2008-02-01 13:18:27 +01:00
blackhole.test Bug #35178 INSERT_ID not written to binary log for inserts against BLACKHOLE backed tables 2008-03-19 18:44:50 +02:00
bool.test
bootstrap.test Bug#20037 mysqltest requires cygwin on windows(part 1, new mysqltest commands) 2007-08-07 11:40:03 +02:00
bulk_replace.test
case.test Fixed some test case after push of BUG#32205 2008-01-06 15:27:42 +08:00
cast.test Bug#31990: MINUTE() and SECOND() return bogus results when used on a DATE 2007-12-11 10:12:05 +01:00
check.test BUG#26325 - TEMPORARY TABLE "corrupt" after first read, according 2007-07-19 13:51:31 +05:00
client_xml.test Bug#27934 test client_xml misssing initialization 2008-07-18 14:07:16 +05:00
comments.test Bug#28779 (mysql_query() allows execution of statements with unbalanced 2007-08-29 14:50:32 -06:00
compare.test Bug #31887: DML Select statement not returning same results 2008-02-15 15:47:32 +02:00
compress.test
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
create.test Fix for bug #25162: Backing up DB from 5.1 adds 'USING BTREE' to KEYs 2008-02-01 13:00:40 +05:00
create_not_windows.test Bug 29325: moved the test from create_not_windows to symlink. 2007-07-13 13:56:22 +03:00
create_select_tmp.test
csv.test protect bug31473 from regressing into 5.0 2007-10-25 17:23:12 -07:00
ctype_ascii.test Bug#27562: ascii.xml invalid? 2007-08-07 05:35:20 -04:00
ctype_big5.test Bug#32510 LIKE search fails with indexed 'eucjpms' and 'ujis' char column 2008-02-04 11:10:40 +04:00
ctype_collate.test Bug#29461: Sort order of the collation wasn't used when comparing characters 2007-07-09 01:23:33 +04:00
ctype_cp932.test Merge mysql.com:/home/bar/mysql-work/mysql-5.0.b32510 2008-02-20 14:38:52 +04:00
ctype_cp932_binlog.test Bug#28369 rpl test cases fail with binlog disabled 2007-06-07 19:18:01 +02:00
ctype_cp1250_ch.test Bug#27580 SPACE() function collation bug? 2007-10-08 12:46:38 +05:00
ctype_cp1251.test
ctype_create.test
ctype_eucjpms.test Bug#32510 LIKE search fails with indexed 'eucjpms' and 'ujis' char column 2008-02-04 11:10:40 +04:00
ctype_euckr.test Bug#32510 LIKE search fails with indexed 'eucjpms' and 'ujis' char column 2008-02-04 11:10:40 +04:00
ctype_gb2312.test Bug#32510 LIKE search fails with indexed 'eucjpms' and 'ujis' char column 2008-02-04 11:10:40 +04:00
ctype_gbk.test Fixed bug #35993: memory corruption and crash with multibyte conversion. 2008-04-23 02:14:58 +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 Bug#29499 Converting 'del' from ascii to Unicode results in 'question mark' 2007-07-04 12:04:57 +05:00
ctype_latin1_de-master.opt
ctype_latin1_de.test
ctype_latin2.test
ctype_latin2_ch.test
ctype_ldml-master.opt Bug#28916 LDML doesn't work for utf8 2007-06-07 17:55:55 +05:00
ctype_ldml.test Bug#28916 LDML doesn't work for utf8 2007-06-07 17:55:55 +05:00
ctype_many.test
ctype_mb.test
ctype_recoding.test Reversing additional change suggested by Serg 2007-08-07 19:25:45 +05:00
ctype_sjis.test Bug#32510 LIKE search fails with indexed 'eucjpms' and 'ujis' char column 2008-02-04 11:10:40 +04:00
ctype_tis620.test
ctype_uca.test Bug#32510 LIKE search fails with indexed 'eucjpms' and 'ujis' char column 2008-02-04 11:10:40 +04:00
ctype_ucs.test Merge stella.local:/home2/mydev/mysql-5.0-amain 2008-03-26 09:33:55 +01: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#32705 - myisam corruption: Key in wrong position 2008-01-16 11:48:04 +01:00
ctype_ucs_binlog.test Bug#28369 rpl test cases fail with binlog disabled 2007-06-07 19:18:01 +02:00
ctype_ujis.test Bug#32510 LIKE search fails with indexed 'eucjpms' and 'ujis' char column 2008-02-04 11:10:40 +04:00
ctype_utf8.test Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-5.0 2007-10-30 12:21:44 +04:00
date_formats-master.opt
date_formats.test Backport of TIME->MYSQL_TIME / Y2K fixset 2007-05-16 10:44:59 +02: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 Merge mysql.com:/home/ram/work/mysql-5.0-engines 2007-11-29 08:24:52 +04:00
delete.test Merge mhansson@bk-internal.mysql.com:/home/bk/mysql-5.0-opt 2007-12-04 11:32:11 +01:00
derived.test Bug #31221: Optimizer incorrectly identifies impossible WHERE clause 2007-10-18 15:19:04 +03:00
dirty_close.test
disabled.def Fix for 2007-11-30 18:06:28 +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 Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.0-build 2007-06-14 23:23:30 +02:00
empty_table.test
endspace.test
error_simulation-master.opt Fixed bug #28449: a crash may happen at some rare conditions when 2007-06-07 00:59:08 -07:00
error_simulation.test Fixed bug #28449: a crash may happen at some rare conditions when 2007-06-07 00:59:08 -07:00
errors.test Bug#28677: SELECT on missing column gives extra error 2007-06-18 16:35:01 +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 Fix for bug #32241: memory corruption due to large index map in 'Range 2007-11-16 13:58:09 +03:00
federated.test Fix for bug #34779: crash in checksum table on federated tables 2008-08-15 11:40:05 +05:00
federated_archive.test
federated_bug_13118.test
federated_bug_25714.test Bug#25714 2007-07-23 23:35:43 -07:00
federated_disabled-master.opt Bug#37069 (5.0): implement --skip-federated 2008-06-03 13:12:37 +03:00
federated_disabled.test Bug#37069 (5.0): implement --skip-federated 2008-06-03 13:12:37 +03:00
federated_innodb-slave.opt Bug#25513 2007-06-28 16:03:01 -07:00
federated_innodb.test Bug#25513 2007-06-28 16:03:01 -07:00
fix_priv_tables.test Skip test cases if the script or binary they need can't be found 2007-04-04 15:40:40 +02:00
flush.test Bug #33334 mysqltest_embedded crashes when disconnecting before reap. 2008-03-19 15:51:22 +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 Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.0-build 2007-06-14 23:23:30 +02:00
flush_read_lock_kill-master.opt
flush_read_lock_kill.test
flush_table.test
foreign_key.test
fulltext.test Merge mysql.com:/home/svoj/devel/mysql/BUG11392/mysql-4.1-engines 2007-11-02 12:58:20 +04:00
fulltext2.test fix test for bug29299 2007-07-06 11:35:10 -07:00
fulltext3.test fix test for bug29299 2007-07-06 11:35:10 -07: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
func_compress.test Merge mysql.com:/usr/home/ram/work/bug23254/my41-bug23254 2006-10-13 19:09:22 +05:00
func_concat.test Fixed bug #36488: regexp returns false matches, concatenating 2008-05-13 20:27:46 +05:00
func_crypt.test
func_date_add.test Bug#28450: The Item_date_add_interval in select list may fail the field 2007-05-30 00:33:12 +04: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
func_gconcat.test Fix for bug #35298: GROUP_CONCAT with DISTINCT can crash the server 2008-05-01 13:49:26 +03:00
func_group.test Fix for bug #34512: CAST( AVG( double ) AS DECIMAL ) 2008-03-06 18:19:47 +03:00
func_if.test Bug#37662 nested if() inside sum() is parsed in exponential time 2008-07-30 14:07:37 +03:00
func_in.test Fix for bug #28748: "Select" returning one value too few 2007-06-09 17:13:33 +05:00
func_isnull.test
func_like.test
func_math.test removed undeterministic test result from the fux for bug 30587 2007-10-01 12:51:59 +03:00
func_misc.test Bug#35848: UUID() returns UUIDs with the wrong time 2008-07-10 03:58:30 +02:00
func_op.test
func_regexp.test Merge abarkov@bk-internal.mysql.com:/home/bk/mysql-5.0 2007-10-30 12:21:44 +04:00
func_sapdb.test Bug#30951: makedate returns different results depending on version of mysql 2007-10-12 11:46:48 +02:00
func_set.test Fix for bug #32560: crash with interval function and count(*) 2007-11-23 16:30:06 +04:00
func_str.test Merge mysql.com:/home/hf/work/31758/my41-31758 2007-11-05 18:12:42 +04: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 Fixed test suite failures with --ps-protocol introduced in PB by 2008-02-27 18:12:08 +03:00
func_timestamp.test
gcc296.test
gis-rtree.test Merge mysql.com:/home/hf/work/30286/my41-30286 2007-10-05 15:41:56 +05:00
gis.test Merge bk@192.168.21.1:mysql-5.0-opt 2007-11-24 15:02:29 +04:00
grant.test Patch clean up. 2008-03-27 09:37:20 -03:00
grant2.test Bug #30468: column level privileges not respected when joining tables 2007-09-27 12:15:19 +03:00
grant3-master.opt
grant3.test Fixed bug#31194: Privilege ordering does not order properly 2008-02-13 19:34:12 +04:00
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 Fixed warnings raised from mysqltest (unknown -- commands) 2007-06-15 11:15:22 -06:00
group_by.test Bug#27219: Aggregate functions in ORDER BY. 2008-03-27 19:49:32 +03:00
group_min_max.test Bug#38195: Incorrect handling of aggregate functions when loose index scan is 2008-08-27 17:03:17 +04:00
handler.test Bug#30632 HANDLER read failure causes hang 2007-08-27 10:37:12 -03:00
having.test Merge olga.mysql.com:/home/igor/dev-opt/mysql-4.1-opt-bug29911 2007-07-21 12:34:18 -07:00
heap.test
heap_auto_increment.test
heap_btree.test Merge anubis.xiphis.org:/usr/home/antony/work/mysql-5.0-engines 2007-10-19 13:04:30 -07:00
heap_hash.test Fix for bug #27643 "query failed : 1114 (The table '' is full) 2007-05-31 14:54:44 +04:00
help.test Test "help": 2007-03-20 19:36:11 +01:00
im_daemon_life_cycle-im.opt
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
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
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#29740: Make the test result deterministic 2007-07-14 22:02:10 +04:00
index_merge_bdb.test
index_merge_innodb.test
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 information_schema.test, information_schema.result: 2008-03-25 19:44:27 +04:00
information_schema_chmod.test Remove unportable use of "exec chmod" 2007-08-29 11:53:15 +02:00
information_schema_db.test Bug #26817: mysqldump fails to backup database containing view with invalid definer 2007-03-23 19:24:03 +01: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-autoinc-optimize.test Cherry-pick InnoDB fixes for Bug#34286, Bug#35352, and Bug#36600 from snapshot 2008-07-31 15:47:57 -06:00
innodb-big.test Bug#24989: The DEADLOCK error is improperly handled by InnoDB. 2007-07-30 17:14:34 +04:00
innodb-deadlock.test Bug#25164 create table a as select * from A hangs 2007-08-27 10:13:54 -03: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 Bug #29136 erred multi-delete on trans table does not rollback the statement 2007-10-13 15:49:42 +03:00
innodb_bug35220.test Cherry-pick fix for Bug#35220 from innodb-5.0-ss2475 snapshot. 2008-08-07 18:25:24 -06:00
innodb_cache-master.opt
innodb_cache.test
innodb_gis.test Bug #30825: Problems when putting a non-spatial index on a GIS column 2007-10-10 16:26:02 +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 Bug#37830 : ORDER BY ASC/DESC - no difference 2008-07-23 14:25:00 +03:00
innodb_notembedded.test
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.test
insert.test Merge polly.(none):/home/kaa/src/maint/bug26788/my50-bug26788 2007-12-02 14:11:36 +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 Bug#28369 rpl test cases fail with binlog disabled 2007-06-07 19:18:01 +02:00
insert_select.test Bug#30384: Having SQL_BUFFER_RESULT option in the CREATE .. KEY(..) .. SELECT 2007-09-21 12:09:00 +04:00
insert_update.test Bug#28904: INSERT .. ON DUPLICATE was silently updating rows when it shouldn't. 2007-06-12 01:41:23 +04:00
join.test Fixed warnings raised from mysqltest (unknown -- commands) 2007-06-15 11:15:22 -06:00
join_crash.test
join_nested.test Fixed bug #29604. 2007-07-11 18:45:35 -07:00
join_outer.test Fixed bug #28571. Outer join queries with ON conditions over 2007-05-26 10:33:01 -07:00
key.test Fix for bug #31137: Assertion failed: primary_key_no == -1 || primary_key_no == 0, 2007-10-26 15:37:38 +05:00
key_cache-master.opt
key_cache.test Bug#28478 - Improper key_cache_block_size corrupts MyISAM tables 2007-05-31 20:04:54 +02:00
key_diff.test
key_primary.test
keywords.test Bug#12204 2007-02-07 14:22:19 -08:00
kill.test Bug #29138 'kill' fails in pushbuild 2007-06-21 21:39:52 -04:00
kill_n_check.sh IM test suite fix. 2007-02-24 13:12:20 +03:00
limit.test Bug#33851 Passing UNSIGNED param to EXECUTE returns ERROR 1210 2008-02-28 11:34:08 -03:00
loaddata.test Fix tree: 2008-03-28 23:39:47 +03: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
lock_multi.test Bug#31479 Bad lock interaction if CREATE TABLE LIKE is killed 2007-11-28 10:18:01 -02: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
long_tmpdir-master.opt Fix for bug #29015 "Stack overflow in processing temporary table name when tmpdir path is long" 2007-06-11 23:06:20 +04:00
long_tmpdir-master.sh Fix for bug #29015 "Stack overflow in processing temporary table name when tmpdir path is long" 2007-06-11 23:06:20 +04:00
long_tmpdir.test Fix for bug #29015 "Stack overflow in processing temporary table name when tmpdir path is long" 2007-06-11 23:06:20 +04:00
lowercase_fs_off.test Update test cases after run with --check-testcases 2006-11-14 19:45:52 +01:00
lowercase_mixed_tmpdir-master.opt Bug #27653: Temp table can't be created if lower_case_table_names=1 and 2007-04-30 23:16:46 +02:00
lowercase_mixed_tmpdir-master.sh Bug #27653: Temp table can't be created if lower_case_table_names=1 and 2007-04-30 23:16:46 +02:00
lowercase_mixed_tmpdir.test Bug #27653: Temp table can't be created if lower_case_table_names=1 and 2007-04-30 23:16:46 +02: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
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 Bug #31562: HAVING and lower case 2007-11-13 11:39:52 +02:00
merge.test BUG#28248 - mysqldump results with MERGE ... UNION=() cannot be executed 2008-03-14 19:38:22 +04:00
metadata.test metadata.test, metadata.result: 2007-06-20 14:21:48 +05:00
mix_innodb_myisam_binlog-master.opt
mix_innodb_myisam_binlog.test Various fixes to make tests pass on Windows. 2008-02-01 13:18:27 +01:00
multi_statement-master.opt
multi_statement.test
multi_update-master.opt
multi_update.test Bug #29136 erred multi-delete on trans table does not rollback the statement 2007-10-13 15:49:42 +03:00
multi_update_tiny_hash-master.opt Fixed bug#36676: multiupdate using LEFT JOIN updates only 2008-05-18 14:21:25 +05:00
multi_update_tiny_hash.test Fixed bug#36676: multiupdate using LEFT JOIN updates only 2008-05-18 14:21:25 +05:00
myisam-blob-master.opt
myisam-blob.test
myisam.test Fix for bug #37310: 'on update CURRENT_TIMESTAMP' option crashes the table 2008-08-26 18:48:50 +05:00
myisampack.test BUG#31277 - myisamchk --unpack corrupts a table 2007-11-07 12:55:28 +04:00
mysql.test Bug#29323 mysql client only accetps ANSI encoded files 2007-10-04 13:06:01 +05:00
mysql_client_test.opt
mysql_client_test.test Use the same name for mysql_client_test output file in all branches. 2008-03-04 10:32:30 -03:00
mysql_comments.sql Fix for: 2007-11-02 13:40:34 +03:00
mysql_comments.test Fix for: 2007-11-02 13:40:34 +03:00
mysql_delimiter.sql Bug 38158: mysql client regression, can't read dump files 2008-07-18 13:24:59 +03: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 Bug #28401 mysql_upgrade Failed with STRICT_ALL_TABLES, ANSI_QUOTES and NO_ZERO_DATE 2007-05-19 18:15:08 +02:00
mysqladmin.test Bug#20037 mysqltest requires cygwin on windows(part 1, new mysqltest commands) 2007-08-07 11:40:03 +02: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 Bug#28369 rpl test cases fail with binlog disabled 2007-06-07 19:18:01 +02:00
mysqlbinlog-master.opt
mysqlbinlog.test Again blanking out some numbers in file names that is dependent 2008-02-01 17:26:28 +01:00
mysqlbinlog2.test Bug#28369 rpl test cases fail with binlog disabled 2007-06-07 19:18:01 +02:00
mysqlcheck.test Fix test case for Bug #25347 so that it actually tests the code fix, 2008-01-27 14:28:50 -07:00
mysqldump-compat.opt Fixed bug #30126. 2007-08-31 16:59:07 +05:00
mysqldump-compat.test Fixed bug #30126. 2007-08-31 16:59:07 +05:00
mysqldump-max.test Fix spelling errors in test files 2006-10-24 17:54:45 +02:00
mysqldump-no-binlog-master.opt Bug #34909: mysqldump returns a 0 status on error when using 2008-03-07 11:15:49 +02:00
mysqldump-no-binlog.test Bug #34909: mysqldump returns a 0 status on error when using 2008-03-07 11:15:49 +02:00
mysqldump.test Bug#22438 2008-03-02 21:20:36 +03:00
mysqlshow.test
mysqltest.test Bug#31004 mysqltest needs a --mkdir command 2007-11-01 15:42:19 +01:00
named_pipe-master.opt Add test for named pipes on windows 2007-09-24 12:42:44 +02:00
named_pipe.test Add test for named pipes on windows 2007-09-24 12:42:44 +02:00
ndb_alter_table.test
ndb_alter_table2.test BUG#29851 TRUNCATE causes error 4350 from cluster in INSERT... ON DUPLICATE KEY UPDATE 2007-09-28 09:16:41 +08:00
ndb_auto_increment.test ha_ndbcluster.h: 2007-11-05 20:18:22 +01:00
ndb_autodiscover.test Bug#32025 ndb_waiter does too many roundtrips to ndb_mgmd 2008-02-21 13:23:58 +01:00
ndb_autodiscover2-master.opt
ndb_autodiscover2.test
ndb_autodiscover3.test Bug#32025 ndb_waiter does too many roundtrips to ndb_mgmd 2008-02-21 13:23:58 +01:00
ndb_backup_print.test Bug #27640 backup id not displayed in the output of "ndb_mgm start backup wait completed" 2007-06-14 18:40:32 +02:00
ndb_basic.test ndb - bug#31635 (5.0) 2007-10-26 08:42:33 +02:00
ndb_bitfield.test
ndb_blob.test ndb - bug#24028 in 5.0 2007-03-21 09:13:05 +01:00
ndb_bug26793.test Backport Magnus' fix from 5.1 2007-08-14 15:07:17 +10:00
ndb_bug31477.test ndb - bug#31477 - 5.0 2008-01-27 16:41:29 +01:00
ndb_cache.test
ndb_cache2.test
ndb_cache_multi.test
ndb_cache_multi2.test
ndb_charset.test
ndb_condition_pushdown.test ndb - bug#34107 patch 2, ndb api 2008-01-31 13:58:29 +01: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
ndb_grant.later
ndb_index.test
ndb_index_ordered.test Fixed warnings raised from mysqltest (unknown -- commands) 2007-06-15 11:15:22 -06: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 ha_ndbcluster.h: 2007-11-05 20:18:22 +01:00
ndb_limit.test
ndb_load.test
ndb_loaddatalocal.test
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 bug#30337 DELETE ... WHERE PK IN (..) and AFTER DELETE trigger crashes API node: Added testcase 2007-08-13 15:59:08 +02:00
ndb_rename.test
ndb_replace.test
ndb_restore.test DictCache.hpp, Ndb.hpp: 2008-01-22 14:18:47 +01:00
ndb_restore_different_endian_data.test BUG#29674 Restore/backup are endian compatible in 5.0 2007-08-07 18:07:57 +00:00
ndb_restore_print.test medium int printout support 2007-03-08 15:37:53 +07:00
ndb_single_user.test Bug #27710 Creating unique index fails during single user mode 2007-04-16 14:07:31 +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
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 Bug#25817 UPDATE IGNORE doesn't check write_set when checking unique indexes: Added checks 2007-10-02 13:36:13 +02: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 Fixed bug #31471: decimal_bin_size: Assertion `scale >= 0 && 2007-10-10 20:14:29 +05:00
null_key.test BUG#34945: "ref_or_null queries that are null_rejecting and have a null value crash mysql" 2008-03-03 20:35:44 +03:00
odbc.test
olap.test Fix for bug #32558: group by null-returning expression with rollup causes crash 2007-11-21 20:53:44 +04:00
openssl_1.test Bug#27669 mysqldump: Got error: 2026: SSL connection error when trying to connect 2007-04-11 23:42:53 +02:00
order_by.test Bug#31590: Wrong error message on sort buffer being too small. 2008-02-08 13:35:00 +03:00
order_fill_sortbuf-master.opt
order_fill_sortbuf.test
outfile.test Merge siva.hindu.god:/home/tsmith/m/bk/50 2007-05-17 14:17:50 -06:00
outfile_loaddata.test Fixed bug #32533. 2007-11-20 20:15:20 +04: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
parser.test Bug#26030 (Parsing fails for stored routine w/multi-statement execution 2008-07-07 10:00:08 -06:00
parser_precedence.test Bug#30625 (Performance, reduce depth for expressions) 2007-08-28 11:16:03 -06:00
parser_stack.test Bug#35577 (CREATE PROCEDURE causes either crash or syntax error depending on 2008-07-14 15:41:30 -06:00
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 Bug#33851 Passing UNSIGNED param to EXECUTE returns ERROR 1210 2008-02-28 11:34:08 -03:00
ps_1general.test Bug#28846 Use of undocumented Prepared Statements crashes server 2007-06-22 11:55:48 +02:00
ps_2myisam.test
ps_3innodb.test
ps_4heap.test
ps_5merge.test
ps_6bdb.test
ps_7ndb.test
ps_10nestset.test
ps_11bugs.test Bug#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#33756 - query cache with concurrent_insert=0 appears broken 2008-03-13 16:39:27 +01:00
query_cache_merge.test Cherry-pick Bug#33362 from mysql-5.1 2008-07-24 11:14:34 -03:00
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
query_cache_with_views.test Bug#30269 Query cache eats memory 2007-08-21 13:43:09 +02:00
raid.test
range.test Merge mysql.com:/misc/mysql/34731_/50-34731 2008-03-27 03:16:35 +01:00
read_only.test Test fails because of non deterministric function: show grants for current_user() 2007-12-10 16:16:21 +01:00
rename.test Merge mysql.com:/home/hf/work/mysql-4.1-mrg 2006-11-16 23:16:44 +04:00
repair.test Fixed bug #36055: mysql_upgrade doesn't really 'upgrade' tables 2008-05-12 21:01:13 +05:00
replace.test
rollback.test
round.test
row.test Fixed bug #34620: item_row.cc:50: Item_row::illegal_method_call(const char*): 2008-02-28 22:53:31 +04:00
rowid_order_bdb.test
rowid_order_innodb.test
rpl000001-slave.opt
rpl000001.test
rpl000002.test
rpl000004.test
rpl000005.test
rpl000006.test
rpl000008-slave.opt
rpl000008.test
rpl000009-slave.opt
rpl000009.test
rpl000010-slave.opt
rpl000010.test
rpl000011.test
rpl000012.test
rpl000013-slave.opt
rpl000013.test
rpl000015-slave.sh
rpl000015.slave-mi
rpl000015.test Fix for 2007-11-30 18:06:28 +01:00
rpl000017-slave.opt
rpl000017-slave.sh
rpl000017.test Bug#28369 rpl test cases fail with binlog disabled 2007-06-07 19:18:01 +02:00
rpl000018-master.opt
rpl000018-slave.opt
rpl_alter.test
rpl_auto_increment-master.opt
rpl_auto_increment.test
rpl_auto_increment_11932.test
rpl_auto_increment_bug33029.test post fix after push of BUG#33029 2008-03-27 13:42:34 +08:00
rpl_bug33931-slave.opt Bug #33931 assertion at write_ignored_events_info_to_relay_log if init_slave_thread() fails 2008-02-13 14:09:41 +02:00
rpl_bug33931.test Bug #33931 assertion at write_ignored_events_info_to_relay_log if init_slave_thread() fails 2008-02-13 14:09:41 +02:00
rpl_change_master.test Merge magare.gmz:/home/kgeorge/mysql/work/B29116-4.1-opt 2007-06-20 12:46:56 +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_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_critical_errors.test BUG#26551 (Aborted query for non-transactional table breaks replication): 2007-04-12 14:00:45 +02:00
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_drop_view.test Bug#30998 Drop View breaks replication if view does not exist 2007-12-03 13:11:40 +08: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-slave.opt BUG#13861 - START SLAVE UNTIL may stop 1 evnt too late if 2008-02-22 19:07:07 +04:00
rpl_dual_pos_advance.test BUG#13861 - START SLAVE UNTIL may stop 1 evnt too late if 2008-03-14 17:17:03 +04:00
rpl_EE_error.test
rpl_empty_master_crash-master.opt rpl_empty_master_crash need a master restart so that all log files are deleted 2006-10-13 20:22:56 +02:00
rpl_empty_master_crash.test
rpl_error_ignored_table-slave.opt
rpl_error_ignored_table.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +02:00
rpl_failed_optimize-master.opt
rpl_failed_optimize.test
rpl_flush_log_loop-master.opt
rpl_flush_log_loop-master.sh
rpl_flush_log_loop-slave.opt
rpl_flush_log_loop-slave.sh
rpl_flush_log_loop.test Bug#28893 --relay-log variable is not exposed with SHOW VARIABLES 2007-10-10 12:21:11 +05:00
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_grant.test Test fix 2007-06-21 16:55:52 +02:00
rpl_ignore_grant-slave.opt
rpl_ignore_grant.test
rpl_ignore_revoke-slave.opt
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
rpl_insert_delayed.test Addendum to bug 29571: wait for INSERT DELAYED to finish on master 2007-07-26 16:59:21 +03: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 Bug #26622 MASTER_POS_WAIT does not work as documented 2008-03-07 21:14:28 +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_map-master.opt BUG#30435 loading large LOAD DATA INFILE breaks slave with 2007-12-21 22:34:43 +02:00
rpl_loaddata_map-slave.opt BUG#30435 loading large LOAD DATA INFILE breaks slave with 2007-12-21 22:34:43 +02:00
rpl_loaddata_map.test Changes to make tests pass in pushbuild. 2008-01-30 15:58:35 +01:00
rpl_loaddata_rule_m-master.opt
rpl_loaddata_rule_m.test
rpl_loaddata_rule_s-slave.opt
rpl_loaddata_rule_s.test
rpl_loaddatalocal.test Use same --slave-load-tmpdir in all versions(backport from 5.0) 2006-10-05 18:29:59 +02:00
rpl_locale.test Bug#22645 LC_TIME_NAMES: Statement not replicated 2006-12-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 Fix for bug #28144: "Slave_IO_Running" differs in replication tests 2007-06-15 16:09:28 +05:00
rpl_many_optimize.test
rpl_master_pos_wait.test Bug#26622 MASTER_POS_WAIT does not work as documented 2008-03-06 14:49:21 +02:00
rpl_max_relay_size.test Cleanup after test cases 2006-11-15 10:23:27 +01:00
rpl_misc_functions-slave.sh
rpl_misc_functions.test rpl_misc_functions.result, rpl_misc_functions.test: 2007-07-09 13:18:27 -06: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
rpl_multi_update4-slave.opt
rpl_multi_update4.test
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 Removing race conditions from rpl_packet causing test to fail. 2008-03-31 16:32:45 +02:00
rpl_ps.test
rpl_redirect.test
rpl_relayrotate-slave.opt
rpl_relayrotate.test
rpl_relayspace-slave.opt
rpl_relayspace.test Bug #25228: rpl_relayspace.test fails on powermacg5, vm-win2003-32-a 2007-08-03 14:14:33 +03:00
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
rpl_rotate_logs-master.opt
rpl_rotate_logs-slave.sh
rpl_rotate_logs.slave-mi
rpl_rotate_logs.test Fix for bug #29420: crash with show and purge binlogs 2007-07-05 13:09:56 +05:00
rpl_server_id.test BUG#28908 Replication: set global server_id is not setting the session server_id 2007-12-21 11:02:48 +08:00
rpl_server_id1.test
rpl_server_id2-slave.opt
rpl_server_id2.test
rpl_session_var.test Bug #29878 Garbage data generation when executing SESSION_USER() on a slave. 2007-07-27 18:42:25 +05:00
rpl_set_charset.test
rpl_skip_error-slave.opt
rpl_skip_error.test Bug #26622 MASTER_POS_WAIT does not work as documented 2008-03-07 21:14:28 +02:00
rpl_slave_skip-slave.opt BUG#12691 (Exec_master_log_pos corrupted with SQL_SLAVE_SKIP_COUNTER): 2007-10-26 18:52:58 +02:00
rpl_slave_skip.test BUG#12691 (Exec_master_log_pos corrupted with SQL_SLAVE_SKIP_COUNTER): 2007-12-20 16:07:54 +01:00
rpl_slave_status.test Bug #26622 MASTER_POS_WAIT does not work as documented 2008-03-07 21:14:28 +02:00
rpl_sp-master.opt
rpl_sp-slave.opt
rpl_sp.test Add a test at Andrei's behest. Show the SHOW CREATE on the 2008-05-16 11:26:29 -04:00
rpl_sp_effects-master.opt
rpl_sp_effects-slave.opt
rpl_sp_effects.test Bug #26199 Replication Failure on Slave when using stored procs with bit-type parameters. 2007-10-21 18:37:37 +03:00
rpl_sporadic_master-master.opt
rpl_sporadic_master.test
rpl_ssl.test Bug#28812 rpl_ssl fails due to assert in extra/yassl/src/socket_wrapper.cpp:117 2007-08-28 11:34:43 +02:00
rpl_start_stop_slave.test
rpl_temporary.test Bug #26622 MASTER_POS_WAIT does not work as documented 2008-03-07 21:14:28 +02:00
rpl_timezone-master.opt
rpl_timezone-slave.opt
rpl_timezone.test Bug #29536: timestamp inconsistent in replication around 1970 2007-08-06 04:57:28 -07:00
rpl_transaction-master.opt BUG#26395: if crash during autocommit update to transactional table on master, slave fails 2007-12-21 20:30:23 +01:00
rpl_transaction-slave.opt BUG#26395: if crash during autocommit update to transactional table on master, slave fails 2007-12-21 20:30:23 +01:00
rpl_transaction.test Bug#35247 - rpl_transaction.test produces warnings files 2008-03-12 15:38:57 +01:00
rpl_trigger.test Bug #19390: Test 'rpl_trigger' fails, might be random 2007-12-17 18:56:39 +02:00
rpl_trunc_temp.test Update mysqltest to latest version 2006-10-03 15:33:44 +02:00
rpl_until.test
rpl_user.test Fixes to make rpl_user test pass in pushbuild. 2008-02-04 12:22:37 +01:00
rpl_user_variables.test Bug#33851 Passing UNSIGNED param to EXECUTE returns ERROR 1210 2008-02-28 11:34:08 -03:00
rpl_variables-master.opt
rpl_variables.test bug#34427 slave misses rendezvous in rpl_variables 2008-02-08 21:03:10 +02:00
rpl_view-slave.opt
rpl_view.test Bug#32575 - Parse error of stmt with extended comments on slave side 2008-05-08 09:41:22 +02:00
schema.test
select.test Merge bk@192.168.21.1:mysql-5.0-opt 2008-02-18 19:18:44 +04:00
select_found.test
select_safe.test
shm-master.opt Add test for named pipes on windows 2007-09-24 12:42:44 +02:00
shm.test Add test for named pipes on windows 2007-09-24 12:42:44 +02:00
show_check-master.opt Fix for bug #30088: Can't disable myisam-recover by a value of "". 2007-08-01 11:41:13 +05:00
show_check.test Bug#37301 Length and Max_length differ with no obvious reason(2nd version) 2008-08-15 16:13:27 -04:00
skip_grants-master.opt
skip_grants.test Fix for bug #33305: Test case in 'skip_grants' file need dynamic loading 2007-12-24 17:42:13 +03:00
skip_name_resolve-master.opt
skip_name_resolve.test
sp-big.test
sp-code.test Bug#20906 (Multiple assignments in SET in stored routine produce incorrect 2008-03-25 11:20:11 -06:00
sp-destruct.test Bug#20037 mysqltest requires cygwin on windows(part 1, new mysqltest commands) 2007-08-07 11:40:03 +02:00
sp-dynamic.test Bug#28846 Use of undocumented Prepared Statements crashes server 2007-06-22 11:55:48 +02:00
sp-error.test Bug#33618 (Crash in sp_rcontext) 2008-01-23 13:26:41 -07:00
sp-prelocking.test Bug #29929 LOCK TABLES does not pre-lock tables used in triggers of the locked tables 2007-07-27 16:56:29 +02:00
sp-security.test Fix for BUG#9504: Stored procedures: execute privilege doesn't 2007-03-23 14:12:11 +03:00
sp-threads.test
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#27415 Text Variables in stored procedures 2007-05-16 14:25:38 +02:00
sp.test Bug#38291 memory corruption and server crash with view/sp/function 2008-08-20 14:49:28 +05: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 Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.0-build 2007-06-14 23:23:30 +02:00
sp_trans_log.test bug#23333 2007-08-22 15:43:16 +03:00
sql_mode.test
ssl-big.test Bug #29579 Clients using SSL can hang the server 2007-07-12 22:06:33 -04:00
ssl.test Add "have_ssl" as synonym for "have_openssl" 2007-03-05 10:03:42 +01:00
ssl_8k_key.test Bug #29784 YaSSL assertion failure when reading 8k key. 2007-07-17 14:43:56 -04: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 Bug #30377: EXPLAIN loses last_query_cost when used with UNION 2007-08-28 18:51:03 +03:00
strict.test Merge bk-internal.mysql.com:/data0/bk/mysql-5.0 2007-06-02 00:57:25 +02: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 Fixed bug #38191. 2008-07-26 13:44:07 -07:00
subselect2.test
subselect3.test Fixed bug#36005: server crashes inside NOT IN clause subquery with 2008-04-23 02:27:23 +05:00
subselect_gis.test
subselect_innodb.test
subselect_notembedded.test after merge fix 2007-06-06 18:55:21 +05:00
sum_distinct-big.test
sum_distinct.test
symlink.test merging fixes 2008-08-26 14:21:07 +05:00
synchronization.test
sysdate_is_now-master.opt
sysdate_is_now.test
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 Skip test cases if the script or binary they need can't be found 2007-04-04 15:40:40 +02: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 Skip test cases if the script or binary they need can't be found 2007-04-04 15:40:40 +02:00
system_mysql_db_refs.test
tablelock.test Bug#23588 SHOW COLUMNS on a temporary table causes locking issues 2008-02-22 12:30:17 +04:00
temp_table-master.opt
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
trigger-compat.test
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 A fix for Bug#34643: TRUNCATE crash if trigger and foreign key. 2008-03-12 16:13:33 +03:00
trigger.test Add a test case for Bug#27248 Triggers: error if insert affects temporary 2007-07-18 14:42:06 +04:00
truncate.test reverted the fix for Bug#5507 2007-04-17 12:32:01 +02: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 Bug #37799: SELECT with a BIT column in WHERE clause 2008-08-28 02:10:37 +05:00
type_bit_innodb.test
type_blob.test Merge zippy.cornsilk.net:/home/cmiller/work/mysql/bug15776/my50-bug15776 2008-04-09 12:27:51 -04:00
type_date.test Merge tnurnberg@bk-internal.mysql.com:/home/bk/mysql-5.0-opt 2007-12-20 08:35:52 +01:00
type_datetime.test Merge mysql.com:/home/gluh/MySQL/Merge/5.0 2007-12-13 14:52:49 +04:00
type_decimal.test Bug#36023: Incorrect handling of zero length caused an assertion to fail. 2008-04-25 00:39:37 +04:00
type_enum.test Fixed bug #29611. 2007-07-22 18:26:16 -07:00
type_float.test Merge polly.(none):/home/kaa/src/maint/bug26788/my50-bug26788 2007-12-01 10:48:41 +03:00
type_nchar.test
type_newdecimal-big.test
type_newdecimal.test Bug#36270: incorrect calculation result - works in 4.1 but not in 5.0 or 5.1 2008-08-15 15:46:21 -04:00
type_ranges.test
type_set.test Post-merge fix 2008-03-14 20:51:32 +01:00
type_time.test Extended fix for the bug#29555. 2007-07-15 21:51:36 +04: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 #30355: Incorrect ordering of UDF results 2007-11-27 17:16:52 +02:00
udf_skip_grants-master.opt Fix for bug #33305: Test case in 'skip_grants' file need dynamic loading 2007-12-24 17:42:13 +03:00
udf_skip_grants.test Fix for bug #33305: Test case in 'skip_grants' file need dynamic loading 2007-12-24 17:42:13 +03:00
union-master.opt
union.test Merge mhansson@bk-internal:/home/bk/mysql-5.0-opt 2007-12-19 15:59:05 +01:00
update.test Fix for bug #22364 "Inconsistent "matched rows" when executing UPDATE" 2007-04-23 18:22:33 +04:00
user_limits.test
user_var-binlog.test Bug#28369 rpl test cases fail with binlog disabled 2007-06-07 19:18:01 +02:00
user_var.test user_var.result, user_var.test: 2007-06-03 14:46:09 +04:00
utils.sh Fix for BUG##24415: Instance manager test im_daemon_life_cycle 2006-11-23 22:55:36 +03:00
varbinary.test backport from 6.0 2008-06-27 20:56:41 +05:00
variables-big.test Bug #27322 failure to allocate transaction_prealloc_size causes crash 2007-04-12 18:03:26 -04:00
variables.test innodb_mysql.test, variables.result, variables.test, innodb_mysql.result: 2008-02-07 11:12:49 +04:00
view.test Fixed bug #35193. 2008-03-26 22:43:12 +04:00
view_grant.test Fix for Bug#34337: Server crash when Altering a view using 2008-02-21 12:17:32 +03: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
wait_timeout.test Added two possible error cases for a test. 2007-01-10 16:55:53 +02:00
warnings-master.opt
warnings.test Fixed bug#30059. 2008-02-07 02:33:21 +04:00
windows.test Bug #27811: 2007-04-23 17:15:51 +03:00
xa.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-26 11:49:24 +01:00