mariadb/mysql-test/t
guilhem@gbichot3.local eaf7728d9f Fix for BUG#735 "Prepared Statements: there is no support for Query
Cache".
WL#1569 "Prepared Statements: implement support of Query Cache".
Prepared SELECTs did not look up in the query cache, and their results
were not stored in the query cache. This made them slower than
non-prepared SELECTs in some cases.
The fix is to re-use the expanded query (the prepared query where
"?" placeholders are replaced by their values, at execution time)
for searching/storing in the query cache.
It works fine for statements prepared via mysql_stmt_prepare(), which
are the most commonly used and were the scope of this bugfix and WL.
It works less fine for statements prepared via the SQL command
PREPARE...FROM, which are still not using the query cache if they
have at least one parameter (because then the expanded query contains
names of user variables, and user variables don't work with the
query cache, even in non-prepared queries).
Note that results from prepared SELECTs, which are in the binary
protocol, and results from normal SELECTs, which are in the text
protocol, ignore each other in the query cache, because a result in the
binary protocol should never be served to a SELECT expecting the text
protocol and vice-versa.
Note, after this patch, bug 25843 starts applying to query cache
("changing default database between PREPARE and EXECUTE of statement
breaks binlog"), we need to fix it.
2007-03-09 18:09:57 +01:00
..
1st.test Added --debug-info to most clients to detect memory leaks in mysql-test-run 2006-11-21 22:32:58 +02:00
alias.test
alter_table-big.test Fixed test case for bug #25044 "ALTER TABLE ... ENABLE KEYS acquires 2007-01-20 14:08:53 +03:00
alter_table.test Merge weblab.(none):/home/marcsql/TREE/mysql-5.0-24562-merge 2007-01-18 18:43:11 -07:00
analyse.test
analyze.test
ansi.test
archive.test Two things: 2007-01-26 15:36:39 -08:00
archive_bitfield.test
archive_gis.test
auto_increment.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
backup-master.sh
backup.test A fix for the broken 4.1-runtime tree. 2007-01-16 21:23:52 +03: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
binlog_row_binlog-master.opt
binlog_row_binlog.test
binlog_row_blackhole.test
binlog_row_ctype_cp932.test
binlog_row_ctype_ucs.test
binlog_row_drop_tmp_tbl.test
binlog_row_innodb_stat-master.opt
binlog_row_innodb_stat.test
binlog_row_insert_select.test
binlog_row_mix_innodb_myisam-master.opt
binlog_row_mix_innodb_myisam.test Bug#17642 mysqlbinlog: Restore from row-based binlog fails 2006-12-14 14:05:25 +04:00
binlog_statement_insert_delayed.test
binlog_stm_binlog-master.opt
binlog_stm_binlog.test
binlog_stm_blackhole.test
binlog_stm_ctype_cp932.test
binlog_stm_ctype_ucs.test
binlog_stm_drop_tmp_tbl.test
binlog_stm_innodb_stat-master.opt
binlog_stm_innodb_stat.test
binlog_stm_insert_select.test
binlog_stm_mix_innodb_myisam-master.opt
binlog_stm_mix_innodb_myisam.test Bug#17642 mysqlbinlog: Restore from row-based binlog fails 2006-12-14 14:05:25 +04:00
bool.test
bulk_replace.test
cache_innodb-master.opt
cache_innodb.test
case.test
cast.test Merge pilot.mysql.com:/home/msvensson/mysql/mysql-5.0-maint 2007-02-06 14:32:08 +01:00
check.test
client_xml.test
comments.test
compare.test
compress.test
concurrent_innodb-master.opt
concurrent_innodb.test
connect.test Merge neptunus.(none):/home/msvensson/mysql/same_tools/my50-same_tools 2006-10-04 16:35:40 +02:00
consistent_snapshot.test
constraints.test
contributors.test
count_distinct.test
count_distinct2-master.opt
count_distinct2.test
count_distinct3.test
crash_commit_before-master.opt
crash_commit_before.test WL#3630 (add embedded server to pushbuild) 2006-12-28 09:42:04 +04:00
create.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
create_not_windows.test
create_select_tmp.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
csv.test Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-01-11 22:15:20 +03:00
ctype_big5.test
ctype_collate.test Remove compiler warnings 2006-11-20 22:42:06 +02:00
ctype_cp932_binlog_row.test
ctype_cp932_binlog_stm.test After merge fix 2007-03-01 18:16:17 +04:00
ctype_cp1250_ch.test Merge mysql.com:/home/my/mysql-5.0 2006-11-22 14:11:36 +02:00
ctype_cp1251.test
ctype_create.test Changed several char* to LEX_STRING*. 2006-10-16 19:57:33 +03:00
ctype_eucjpms.test
ctype_euckr.test
ctype_filename.test
ctype_gb2312.test
ctype_gbk.test
ctype_hebrew.test Fix for the bug #24037 "Lossy Hebrew to Unicode conversion". 2006-12-22 15:30:37 +03:00
ctype_latin1.test
ctype_latin1_de-master.opt
ctype_latin1_de.test
ctype_latin2.test
ctype_latin2_ch.test
ctype_many.test
ctype_mb.test
ctype_recoding.test
ctype_sjis.test
ctype_tis620.test
ctype_uca.test
ctype_ucs.test Merge bk-internal.mysql.com:/home/bk/mysql-5.0 2006-11-20 22:46:52 +02:00
ctype_ucs2_def-master.opt
ctype_ucs2_def.test
ctype_ujis.test
ctype_utf8.test Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-01-22 19:18:22 +02:00
date_formats-master.opt
date_formats.test Merge mysql.com:/usr/home/ram/work/bug22029/my50-bug22029 2006-11-22 09:29:22 +04:00
deadlock_innodb.test
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 bk-internal.mysql.com:/home/bk/mysql-5.1 2007-01-22 19:18:22 +02:00
delete.test Merge moonbone.local:/work/latest-4.1-opt-mysql 2007-01-12 16:43:52 +03:00
derived.test
dirty_close.test
disabled.def Merge weblab.(none):/home/marcsql/TREE/mysql-5.0-base 2007-03-01 14:06:57 -07:00
distinct.test Bug #25551: inconsistent behaviour in grouping NULL, depending on index type 2007-01-31 10:18:26 +02:00
drop.test
empty_table.test
endspace.test
errors.test
events.test Merge jamppa@bk-internal.mysql.com:/home/bk/mysql-5.1 2006-10-17 19:54:44 +03:00
events_bugs.test BUG#16425: Events: no DEFINER clause 2007-02-02 20:43:33 +03:00
events_grant.test Better fix for bug#22830 2006-11-02 13:51:43 +01:00
events_logs_tests-master.opt
events_logs_tests.test fix for bug #18981 event_logs_tests failure 2007-01-03 14:09:31 +01:00
events_microsec.test
events_restart_phase0.log
events_restart_phase0.result
events_restart_phase1.test
events_restart_phase2-master.opt
events_restart_phase2.test
events_restart_phase3-master.opt
events_restart_phase3.test
events_scheduling.test
events_stress.test
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
federated.test Merge chilla.local:/home/mydev/mysql-5.0-axmrg 2006-12-01 23:01:33 +01:00
federated_archive.test
federated_bug_13118.test
federated_server.test WL# 3031 2006-12-12 19:39:45 -05:00
federated_transactions-slave.opt
federated_transactions.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 Bug#17733 Flushing logs causes daily server crash 2006-12-01 09:49:19 +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 Added back sql-bench directory, so that one can more easily run benchmarks on a server and add new benchmarks for new optimizations 2006-11-29 22:51:09 +02:00
flush_read_lock_kill.test
flush_table.test
foreign_key.test
fulltext.test
fulltext2.test
fulltext_cache.test
fulltext_distinct.test
fulltext_left_join.test Post-merge fix. 2007-01-23 10:11:53 -08: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
func_crypt.test
func_date_add.test
func_default.test
func_des_encrypt.test
func_encrypt-master.opt
func_encrypt.test
func_encrypt_nossl.test
func_equal.test
func_gconcat.test Merge dl145s.mysql.com:/data0/bk/team_tree_merge/MERGE/mysql-5.0-opt 2006-11-30 17:59:14 +01:00
func_group.test Merge siva.hindu.god:/usr/home/tim/m/bk/50 2006-12-26 12:43:57 -07:00
func_group_innodb.test
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 Merge gkodinov@bk-internal.mysql.com:/home/bk/mysql-5.1-opt 2007-02-16 14:05:09 +02:00
func_isnull.test
func_like.test
func_math.test Bug #6172: RAND(a) should only accept constant values as arguments 2007-01-23 19:45:58 +02: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
func_regexp.test
func_sapdb.test Remove compiler warnings 2006-11-20 22:42:06 +02:00
func_set.test
func_str.test Merge macbook.gmz:/Users/kgeorge/mysql/work/mysql-5.0-opt 2007-01-23 12:34:50 +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 mysql.com:/home/gluh/MySQL/Merge/5.0-opt 2007-02-02 10:25:45 +04:00
func_timestamp.test
gcc296.test
gis-rtree.test Bug #23578: Corruption prevents Optimize table from working properly with a 2006-12-19 15:04:26 +02:00
gis.test Merge mysql.com:/home/hf/work/20691/my50-20691 2007-02-13 01:22:43 +04:00
grant.test Merge neptunus.(none):/home/msvensson/mysql/mysql-5.1 2007-02-06 15:46:17 +01:00
grant2.test Bug#16456 RBR: rpl_sp.test expects query to fail, but passes in RBR 2006-11-17 21:30:28 +01:00
grant3-master.opt
grant3.test
grant_cache.test Fix for BUG#735 "Prepared Statements: there is no support for Query 2007-03-09 18:09:57 +01:00
greedy_optimizer.test Fixed portablity problem 2006-11-28 05:43:30 +02:00
group_by.test Merge macbook.gmz:/Users/kgeorge/mysql/work/mysql-5.0-opt 2007-01-23 12:34:50 +02:00
group_min_max.test Merge dl145s.mysql.com:/data0/bk/team_tree_merge/mysql-5.0-opt 2006-11-29 11:48:44 +01:00
group_min_max_innodb.test
handler_innodb.test
handler_myisam.test
having.test
heap.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
heap_auto_increment.test
heap_btree.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
heap_hash.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
help.test
im_cmd_line.imtest Patch for IM in scope of working on BUG#24415: Instance manager test 2007-02-18 15:45:28 +03:00
im_daemon_life_cycle-im.opt
im_daemon_life_cycle.imtest Merge alik.opbmk:/mnt/raid/alik/MySQL/devel/5.0-rt 2007-02-23 20:27:13 +03:00
im_instance_conf-im.opt
im_instance_conf.imtest
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-im.opt
im_options.imtest Cleanup: manually port the polishing parts from Alik's changeset for 2006-11-16 23:36:20 +03: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_innodb.test
index_merge_myisam.test
information_schema.test Merge olga.mysql.com:/home/igor/mysql-5.0-opt 2007-02-13 01:34:36 -08: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 Bug#21713 incorrect value for the REFERENTIAL_CONSTRAINTS.UNIQUE_CONSTRAINT_NAME column 2007-01-15 13:39:28 +04:00
information_schema_part.test
init_connect-master.opt
init_connect.test Cleanup after test cases 2006-11-15 10:23:27 +01: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-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.test Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-01-31 16:24:28 -05:00
innodb_gis.test bug #22682 Test fails --without-geometry 2007-01-24 14:49:36 +04:00
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 Bug#16456 RBR: rpl_sp.test expects query to fail, but passes in RBR 2006-11-17 21:30:28 +01: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
insert.test Merge macbook.gmz:/Users/kgeorge/mysql/work/mysql-5.0-opt 2007-01-23 12:34:50 +02:00
insert_notembedded.test several fixes to make tests pass in embedded-server mode 2006-11-13 20:06:45 +04:00
insert_select.test after merge fix 2007-02-26 16:52:54 +04:00
insert_update.test Merge mysql.com:/home/gluh/MySQL/Merge/5.0-opt 2007-02-26 15:54:43 +04:00
join.test Merge mysql.com:/home/gluh/MySQL/Merge/5.0-opt 2007-01-12 14:48:59 +04: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 Merge olga.mysql.com:/home/igor/mysql-5.0-opt 2007-02-13 01:34:36 -08:00
join_outer_innodb.test
key.test Merge mhansson@bk-internal:/home/bk/mysql-5.1-opt 2007-01-29 16:16:20 +01: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 Fixed compiler warnings 2007-02-23 13:13:55 +02:00
kill.test Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint 2006-12-08 17:10:54 +01:00
kill_n_check.sh IM test suite fix. 2007-02-24 13:12:20 +03:00
limit.test Merge shellback.(none):/home/msvensson/mysql/mysql-5.1 2006-11-29 15:44:09 +01:00
loaddata.test
loaddata_autocom_innodb.test
loaddata_autocom_ndb.test
lock.test
lock_multi.test Merge hf@192.168.21.12:work/embt/my50-embt 2006-12-26 20:22:17 +04: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
log_state-master.opt
log_state.test Fixed problems detected by pushbuild 2007-01-30 13:52:26 +02:00
log_tables-master.opt
log_tables.test Merge pchardin@bk-internal.mysql.com:/home/bk/mysql-5.1-runtime 2006-10-24 17:00:23 +04: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
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 Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-02-01 15:15:40 +01:00
metadata.test Bug #20191: getTableName gives wrong or inconsistent result when using VIEWs 2006-11-09 16:55:42 +02:00
mix2_myisam.test
multi_statement-master.opt
multi_statement.test
multi_update-master.opt
multi_update.test
myisam-blob-master.opt
myisam-blob.test
myisam-system.test
myisam.test Merge bk-internal.mysql.com:/data0/bk/mysql-5.1 2007-01-25 12:28:00 +01:00
mysql.test Merge mysql.com:/home/my/mysql-5.0 2007-01-27 03:46:45 +02:00
mysql_client_test-master.opt Tell mysqld where to put the log file 2006-11-28 19:12:59 +01:00
mysql_client_test.test
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-master.opt
mysqlbinlog.test After merge fix 2007-03-01 18:16:17 +04:00
mysqlbinlog2.test Bug#17642 mysqlbinlog: Restore from row-based binlog fails 2006-12-14 14:05:25 +04:00
mysqlbinlog_base64.test Fix for BUG#25628: "mysqlbinlog crashes while processing binary logs". 2007-02-23 22:23:54 +01:00
mysqlcheck.test After merge fixes 2007-01-29 01:47:35 +02:00
mysqldump-max.test Fix spelling errors in test files 2006-10-24 17:54:45 +02:00
mysqldump.test Merge mysql.com:/home/bkroot/mysql-5.1-new-rpl 2006-12-08 23:41:29 +01:00
mysqlshow.test
mysqlslap.test
mysqltest.test Merge bk-internal.mysql.com:/home/bk/mysql-5.0 2007-02-21 14:07:08 +02:00
ndb_alter_table.test fix for commit 1.2368 2006-12-18 09:46:44 +03:00
ndb_alter_table2.test
ndb_alter_table3.test
ndb_autodiscover.test
ndb_autodiscover2-master.opt
ndb_autodiscover2.test
ndb_autodiscover3.test Changed mysql.apply_status, mysql.binlog_index, and mysql.schema to mysql.ndb_apply_status, mysql.ndb_binlog_index, and mysql.ndb_schema 2006-12-01 15:49:07 +01:00
ndb_basic.test Merge bk-internal.mysql.com:/data0/bk/mysql-5.1 2007-01-25 12:28:00 +01:00
ndb_binlog_basic.test Changed mysql.apply_status, mysql.binlog_index, and mysql.schema to mysql.ndb_apply_status, mysql.ndb_binlog_index, and mysql.ndb_schema 2006-12-01 15:49:07 +01:00
ndb_binlog_basic2.test
ndb_binlog_ddl_multi.test Fixed portablity problem 2006-11-28 05:43:30 +02:00
ndb_binlog_discover.test
ndb_binlog_ignore_db-master.opt
ndb_binlog_ignore_db.test A writability test in a prereq file polluted the binlog. 2007-01-06 12:34:16 -05:00
ndb_binlog_multi.test Changed mysql.apply_status, mysql.binlog_index, and mysql.schema to mysql.ndb_apply_status, mysql.ndb_binlog_index, and mysql.ndb_schema 2006-12-01 15:49:07 +01:00
ndb_bitfield.test
ndb_blob.test ndb - replace explain 'rows' by '#' in ndb*.test - stats are not deterministic 2006-10-16 16:13:03 +02:00
ndb_blob_partition.test Fixed portablity problem 2006-11-28 05:43:30 +02:00
ndb_cache.test
ndb_cache2.test
ndb_cache_multi.test
ndb_cache_multi2.test Fix for BUG#735 "Prepared Statements: there is no support for Query 2007-03-09 18:09:57 +01:00
ndb_charset.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
ndb_condition_pushdown.test ndb - replace explain 'rows' by '#' in ndb*.test - stats are not deterministic 2006-10-16 16:13:03 +02:00
ndb_config.test
ndb_config2.test
ndb_cursor.test fix for commit 1.2368 2006-12-18 12:52:59 +03:00
ndb_database.test
ndb_dd_alter.test bug #25296 Truncate table converts NDB disk based tables to in-memory tables: implemented ha_ndbcluster::update_create_info 2007-01-02 22:31:29 +01:00
ndb_dd_backuprestore.test
ndb_dd_basic.test
ndb_dd_ddl.test ndb_dd_ddl.test, ndb_dd_ddl.result, ha_ndbcluster.cc: 2006-12-20 15:15:26 +01:00
ndb_dd_disk2memory.test bug#24667 After ALTER TABLE operation ndb_dd table becomes regular ndb: ALTER TABLE must specify STORAGE explicitely to change it, + post review changes 2006-12-19 23:20:43 +01:00
ndb_dd_dump.test
ndb_dd_sql_features.test ndb - replace explain 'rows' by '#' in ndb*.test - stats are not deterministic 2006-10-16 16:13:03 +02:00
ndb_gis.test
ndb_grant.later
ndb_index.test
ndb_index_ordered.test bug#24820 CREATE INDEX ....USING HASH on NDB table creates ordered index, not HASH index: Merged up test 5.0 case 2007-01-08 14:20:35 +01:00
ndb_index_unique.test Change to new (after merge) error numbers 2007-01-23 01:58:07 +02:00
ndb_insert.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
ndb_limit.test
ndb_load.test
ndb_loaddatalocal.test
ndb_lock.test Fixed compiler warnings 2007-02-23 13:13:55 +02:00
ndb_minmax.test
ndb_multi.test bug #21495 Alter table from x engine to ndb and back can cause issue with drop DB:disable distributed drop database if a database contains local tables 2006-11-15 11:13:49 +01:00
ndb_multi_row.test
ndb_partition_error.test
ndb_partition_key.test ndb - bug#25587 2007-01-12 15:48:47 +01:00
ndb_partition_list.test
ndb_partition_range.test
ndb_read_multi_range.test bug#25821 Excessive partition pruning for multi-range index scan in NDB API: added original test case 2007-02-07 09:49:16 +01:00
ndb_rename.test
ndb_replace.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
ndb_restore.test
ndb_restore_compat.test Changed mysql.apply_status, mysql.binlog_index, and mysql.schema to mysql.ndb_apply_status, mysql.ndb_binlog_index, and mysql.ndb_schema 2006-12-01 15:49:07 +01:00
ndb_restore_partition-master.opt
ndb_restore_partition.test
ndb_sp.test WL#2862 ndb_sp.test - removed unnecessary line 2006-12-19 16:17:57 +03:00
ndb_subquery.test WL#2862 2006-12-17 23:08:04 +03:00
ndb_temporary.test
ndb_transaction.test
ndb_trigger.test WL#2862 2006-12-17 23:08:04 +03: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 Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-01-22 19:18:22 +02:00
ndb_view.test
ndbapi.test
negation_elimination.test
no-threads-master.opt Fixed compiler warnings 2007-02-23 13:13:55 +02:00
no-threads.test Fixed compiler warnings 2007-02-23 13:13:55 +02:00
not_embedded_server-master.opt Improve restart logic all code to detect restart is now in the functions 2006-10-11 14:50:19 +02:00
not_embedded_server.test
not_partition.test Bug#18888 Trying to overwrite sql/lex_hash.h during build 2006-10-26 19:11:09 +02:00
null.test Remove compiler warnings 2006-11-20 22:42:06 +02:00
null_key.test
odbc.test
olap.test Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-4.1-opt 2006-10-19 15:04:12 +02:00
openssl_1.test Bug#25988 openssl_1 Test Case Fails 2007-02-06 16:28:36 +01:00
order_by.test Merge gkodinov@bk-internal.mysql.com:/home/bk/mysql-5.1-opt 2007-01-22 12:58:14 +02:00
order_fill_sortbuf-master.opt
order_fill_sortbuf.test
outfile.test
overflow.test
packet.test
parser.test Bug#22687 (Functions UNIQUE_USERS, GROUP_UNIQUE_USERS) 2007-01-11 14:58:05 -07:00
parser_bug21114_innodb.test Bug#21114 (Foreign key creation fails to table with name format) 2006-11-03 09:56:44 -07:00
partition-master.opt
partition.test bug #24186 (nested query across partitions returns fewer records) 2007-01-12 15:46:20 +04:00
partition_02myisam.test
partition_03ndb.test
partition_charset.test
partition_error.test
partition_federated.test bug #22451 (Partitions: duplicating results with ENGINE=FEDERATED) 2006-12-19 16:37:50 +04:00
partition_grant.test
partition_hash.test
partition_innodb.test BUG#26117 "index_merge sort-union over partitioned table crashes" 2007-02-27 22:01:03 +03:00
partition_list.test
partition_mgm.test
partition_mgm_err.test
partition_mgm_err2.test
partition_order.test
partition_pruning.test
partition_range.test
perror.test
plugin.test Add support for loading example plugin and add plugin.test 2006-12-15 00:09:56 +01: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 Merge moonlight.home:/home/tomash/src/mysql_ab/mysql-5.1 2007-03-07 19:05:46 +03:00
ps_1general.test Merge weblab.(none):/home/marcsql/TREE/mysql-5.1-base 2007-02-15 14:04:03 -07:00
ps_2myisam.test
ps_3innodb.test
ps_4heap.test
ps_5merge.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 neptunus.(none):/home/msvensson/mysql/same_tools/my50-same_tools 2006-10-04 16:35:40 +02:00
ps_not_windows.test ps_not_windows disabled in embedded server 2007-01-03 03:31:12 +04:00
query_cache.test Fix for BUG#735 "Prepared Statements: there is no support for Query 2007-03-09 18:09:57 +01:00
query_cache_merge.test
query_cache_notembedded.test Merge trift2.:/MySQL/M50/clone-5.0 2006-12-21 12:18:28 +01:00
query_cache_sql_prepare.test Fix for BUG#735 "Prepared Statements: there is no support for Query 2007-03-09 18:09:57 +01:00
range.test Merge mysql.com:/home/gluh/MySQL/Merge/5.1 2007-01-24 19:54:40 +04:00
read_many_rows_innodb.test
read_only.test Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2006-12-12 13:57:28 +03:00
read_only_innodb.test WL#3602 (SET GLOBAL READONLY) 2006-11-20 20:40:35 -07:00
rename.test Merge mysql.com:/home/hf/work/mysql-4.1-mrg 2006-11-16 23:16:44 +04:00
renamedb.test
repair.test Merge mysql.com:/home/svoj/devel/mysql/engines/mysql-5.0-engines 2006-10-19 19:59:57 +05:00
replace.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
rollback.test
round.test
row.test
rowid_order_innodb.test
rpl000010-slave.opt
rpl000010.test
rpl000011.test
rpl000013.test
rpl000017-slave.opt
rpl000017-slave.sh
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_000015-slave.sh
rpl_000015.slave-mi
rpl_000015.test Merge trift2.:/MySQL/M50/clone-5.0 2006-12-21 12:18:28 +01:00
rpl_alter.test
rpl_alter_db.test
rpl_auto_increment-master.opt
rpl_auto_increment-slave.opt
rpl_auto_increment.test
rpl_auto_increment_11932.test
rpl_bit.test
rpl_bit_npk.test
rpl_change_master.test Backport test cases fixes from 5.0 2006-10-19 10:54:23 +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_innodb-slave.opt
rpl_deadlock_innodb.test
rpl_delete_no_where.test
rpl_do_grant.test Merge mysql.com:/usr/home/bar/mysql-5.0.b24158 2006-12-08 16:15:43 +04:00
rpl_drop.test
rpl_drop_db.test Update result file for mysql_upgrade as we have more tables that is checked in 5.1 2006-11-15 13:22:38 +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
rpl_EE_err.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_err_ignoredtable-slave.opt
rpl_err_ignoredtable.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
rpl_extraCol_innodb-master.opt Has issues with original tree, so had to pull new tree and copy test over. Running last test now and will push after 2006-11-03 16:31:25 +01:00
rpl_extraCol_innodb-slave.opt Has issues with original tree, so had to pull new tree and copy test over. Running last test now and will push after 2006-11-03 16:31:25 +01:00
rpl_extraCol_innodb.test Has issues with original tree, so had to pull new tree and copy test over. Running last test now and will push after 2006-11-03 16:31:25 +01:00
rpl_extraCol_myisam.test Has issues with original tree, so had to pull new tree and copy test over. Running last test now and will push after 2006-11-03 16:31:25 +01:00
rpl_failed_optimize-master.opt
rpl_failed_optimize.test
rpl_flushlog_loop-master.opt
rpl_flushlog_loop-master.sh
rpl_flushlog_loop-slave.opt
rpl_flushlog_loop-slave.sh
rpl_flushlog_loop.test
rpl_foreign_key_innodb-slave.opt
rpl_foreign_key_innodb.test
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
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 After merge fix. 2006-11-03 13:08:53 +04:00
rpl_ignore_table_update-slave.opt
rpl_ignore_table_update.test
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.test
rpl_insert_id-slave.opt
rpl_insert_id.test Fix for BUG#24432 2007-02-08 15:53:14 +01:00
rpl_insert_id_pk-slave.opt
rpl_insert_id_pk.test
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 Manual merge from 5.0-rpl, of fixes for: 2007-02-15 20:28:58 +01:00
rpl_LD_INFILE.test
rpl_load_from_master-slave.opt
rpl_load_from_master.test
rpl_load_table_from_master.test
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_m-master.opt
rpl_loaddata_m.test
rpl_loaddata_s-slave.opt
rpl_loaddata_s.test
rpl_loaddata_simple.test After merge fix 2007-03-01 18:16:17 +04: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_loadfile.test
rpl_locale.test Bug#22645 LC_TIME_NAMES: Statement not replicated 2006-12-07 09:31:53 +04:00
rpl_log_pos.test
rpl_many_optimize.test
rpl_master_pos_wait.test
rpl_misc_functions-slave.sh
rpl_misc_functions.test
rpl_mixed_ddl_dml.test
rpl_multi_delete-slave.opt
rpl_multi_delete.test
rpl_multi_delete2-slave.opt
rpl_multi_delete2.test
rpl_multi_engine-slave.opt
rpl_multi_engine.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_ndb_2innodb-master.opt
rpl_ndb_2innodb-slave.opt
rpl_ndb_2innodb.test
rpl_ndb_2myisam-master.opt
rpl_ndb_2myisam-slave.opt
rpl_ndb_2myisam.test
rpl_ndb_auto_inc.test Test "rpl_ndb_auto_inc" need ndb - add "include/have_ndb.inc" 2006-10-24 18:21:23 +02:00
rpl_ndb_bank.test Added --debug-info to most clients to detect memory leaks in mysql-test-run 2006-11-21 22:32:58 +02:00
rpl_ndb_basic.test
rpl_ndb_blob.test
rpl_ndb_blob2.test
rpl_ndb_charset.test
rpl_ndb_commit_afterflush.test
rpl_ndb_dd_advance.test after merge fixes 2007-01-29 16:13:18 +02:00
rpl_ndb_dd_basic.test
rpl_ndb_dd_partitions.test
rpl_ndb_ddl.test Has issues with original tree, so had to pull new tree and copy test over. Running last test now and will push after 2006-11-03 16:31:25 +01:00
rpl_ndb_delete_nowhere.test
rpl_ndb_do_db-slave.opt New cluster replication test cases for replication options 2006-12-15 16:34:29 +01:00
rpl_ndb_do_db.test Many files: 2007-01-04 04:09:06 +01:00
rpl_ndb_do_table-slave.opt New cluster replication test cases for replication options 2006-12-15 16:34:29 +01:00
rpl_ndb_do_table.test Many files: 2007-01-04 04:09:06 +01:00
rpl_ndb_extraCol.test Has issues with original tree, so had to pull new tree and copy test over. Running last test now and will push after 2006-11-03 16:31:25 +01:00
rpl_ndb_func003.test
rpl_ndb_idempotent.test Changed mysql.apply_status, mysql.binlog_index, and mysql.schema to mysql.ndb_apply_status, mysql.ndb_binlog_index, and mysql.ndb_schema 2006-12-01 15:49:07 +01:00
rpl_ndb_innodb2ndb-master.opt
rpl_ndb_innodb2ndb-slave.opt
rpl_ndb_innodb2ndb.test
rpl_ndb_innodb_trans-slave.opt
rpl_ndb_innodb_trans.test
rpl_ndb_insert_ignore.test
rpl_ndb_load.test
rpl_ndb_log-master.opt
rpl_ndb_log.test
rpl_ndb_multi.test Changed mysql.apply_status, mysql.binlog_index, and mysql.schema to mysql.ndb_apply_status, mysql.ndb_binlog_index, and mysql.ndb_schema 2006-12-01 15:49:07 +01:00
rpl_ndb_multi_update2-slave.opt
rpl_ndb_multi_update2.test
rpl_ndb_multi_update3.test
rpl_ndb_myisam2ndb-master.opt
rpl_ndb_myisam2ndb-slave.opt
rpl_ndb_myisam2ndb.test
rpl_ndb_relayrotate-slave.opt
rpl_ndb_relayrotate.test
rpl_ndb_rep_ignore-slave.opt New cluster replication test cases for replication options 2006-12-15 16:34:29 +01:00
rpl_ndb_rep_ignore.test Many files: 2007-01-04 04:09:06 +01:00
rpl_ndb_row_001.test
rpl_ndb_sp003.test
rpl_ndb_sp006.test
rpl_ndb_sync.test Changed mysql.apply_status, mysql.binlog_index, and mysql.schema to mysql.ndb_apply_status, mysql.ndb_binlog_index, and mysql.ndb_schema 2006-12-01 15:49:07 +01:00
rpl_ndb_trig004.test
rpl_ndb_UUID.test
rpl_ndbapi_multi.test
rpl_openssl.test Merge pilot.mysql.com:/home/msvensson/mysql/mysql-5.0-maint 2007-02-06 22:01:21 +01:00
rpl_optimize.test
rpl_packet-master.opt
rpl_packet-slave.opt
rpl_packet.test bug#19402 SQL close to the size of the max_allowed_packet fails on the slave 2006-11-15 12:53:07 +02:00
rpl_ps.test
rpl_rbr_to_sbr.test WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code. 2006-12-07 09:18:35 -05:00
rpl_read_only-slave.opt WL#3602 2006-11-30 18:43:33 -07:00
rpl_read_only.test WL#3602 2006-11-30 18:43:33 -07:00
rpl_redirect.test
rpl_relay_space_innodb-master.opt
rpl_relay_space_innodb-slave.opt
rpl_relay_space_innodb.test
rpl_relay_space_myisam.test
rpl_relayrotate-slave.opt
rpl_relayrotate.test
rpl_relayspace-slave.opt
rpl_relayspace.test
rpl_replicate_do-slave.opt
rpl_replicate_do.test Merge mysql.com:/nfsdisk1/lars/bk/mysql-5.0-rpl 2007-03-01 15:39:57 +01:00
rpl_replicate_ignore_db-slave.opt
rpl_replicate_ignore_db.test
rpl_rewrt_db-slave.opt
rpl_rewrt_db.test
rpl_rotate_logs-master.opt
rpl_rotate_logs-slave.sh
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_row_001.test
rpl_row_4_bytes-master.opt
rpl_row_4_bytes.test
rpl_row_basic_2myisam.test
rpl_row_basic_3innodb-slave.opt
rpl_row_basic_3innodb.test
rpl_row_basic_7ndb.test
rpl_row_basic_8partition.test WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code. 2006-12-07 09:18:35 -05:00
rpl_row_basic_11bugs-master.opt
rpl_row_basic_11bugs.test WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code. 2006-12-07 09:18:35 -05:00
rpl_row_blob_innodb-slave.opt
rpl_row_blob_innodb.test
rpl_row_blob_myisam.test
rpl_row_charset.test
rpl_row_create_table-slave.opt BUG#22864 (Rollback following CREATE... SELECT discards 'CREATE TABLE' 2006-12-21 09:29:02 +01:00
rpl_row_create_table.test Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-01-22 19:18:22 +02:00
rpl_row_delayed_ins.test
rpl_row_drop.test
rpl_row_err_daisychain-master.opt
rpl_row_err_daisychain-slave.opt
rpl_row_flsh_tbls.test
rpl_row_func001.test
rpl_row_func002.test
rpl_row_func003-slave.opt
rpl_row_func003.test
rpl_row_inexist_tbl-slave.opt
rpl_row_inexist_tbl.test
rpl_row_insert_delayed.test Manual merge from 5.0-rpl, of fixes for: 2007-02-15 20:28:58 +01:00
rpl_row_log-master.opt
rpl_row_log-slave.opt
rpl_row_log.test
rpl_row_log_innodb-master.opt
rpl_row_log_innodb-slave.opt
rpl_row_log_innodb.test
rpl_row_max_relay_size.test WL#3618 - Remove HAVE_ROW_BASED_REPLICATION from source code. 2006-12-07 09:18:35 -05:00
rpl_row_mysqlbinlog-master.opt
rpl_row_mysqlbinlog.test
rpl_row_mystery22.test
rpl_row_NOW.test
rpl_row_reset_slave.test
rpl_row_sp001.test
rpl_row_sp002_innodb-master.opt
rpl_row_sp002_innodb-slave.opt
rpl_row_sp002_innodb.test
rpl_row_sp003-master.opt
rpl_row_sp003-slave.opt
rpl_row_sp003.test
rpl_row_sp005.test
rpl_row_sp006_InnoDB-slave.opt
rpl_row_sp006_InnoDB.test
rpl_row_sp007_innodb-slave.opt
rpl_row_sp007_innodb.test
rpl_row_sp008.test
rpl_row_sp009.test
rpl_row_sp010.test
rpl_row_sp011.test
rpl_row_sp012.test
rpl_row_stop_middle.test
rpl_row_stop_middle_update-master.opt
rpl_row_stop_middle_update-slave.opt
rpl_row_stop_middle_update.test
rpl_row_tabledefs_2myisam.test
rpl_row_tabledefs_3innodb-slave.opt BUG#24490 (segfault inside unpack_row at Field_bit_as_char::set_default()): 2006-12-05 10:46:03 +01:00
rpl_row_tabledefs_3innodb.test
rpl_row_trig001.test
rpl_row_trig002.test
rpl_row_trig003.test
rpl_row_trig004.test
rpl_row_until.test
rpl_row_USER.test
rpl_row_UUID.test
rpl_row_view01.test
rpl_server_id1.test
rpl_server_id2-slave.opt
rpl_server_id2.test
rpl_session_var.test
rpl_set_charset.test
rpl_sf.test Bug#16456 RBR: rpl_sp.test expects query to fail, but passes in RBR 2006-11-17 21:30:28 +01:00
rpl_skip_error-slave.opt Change to new (after merge) error numbers 2007-01-23 01:58:07 +02:00
rpl_skip_error.test
rpl_slave_status.test Merge shellback.(none):/home/msvensson/mysql/mysql-5.0-maint 2006-10-08 15:59:06 +02:00
rpl_sp-master.opt
rpl_sp-slave.opt
rpl_sp.test Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-01-22 19:18:22 +02:00
rpl_sp004.test
rpl_sp_effects-master.opt
rpl_sp_effects-slave.opt
rpl_sp_effects.test Bug#16456 RBR: rpl_sp.test expects query to fail, but passes in RBR 2006-11-17 21:30:28 +01:00
rpl_sporadic_master-master.opt
rpl_sporadic_master.test
rpl_start_stop_slave.test
rpl_stm_000001-slave.opt
rpl_stm_000001.test
rpl_stm_charset.test
rpl_stm_EE_err2.test
rpl_stm_flsh_tbls.test
rpl_stm_insert_delayed.test Manual merge from 5.0-rpl, of fixes for: 2007-02-15 20:28:58 +01:00
rpl_stm_log-master.opt Merge siva.hindu.god:/usr/home/tim/m/bk/50 2006-10-20 13:53:39 -06:00
rpl_stm_log-slave.opt
rpl_stm_log.test
rpl_stm_max_relay_size.test
rpl_stm_multi_query.test
rpl_stm_mystery22.test
rpl_stm_no_op.test
rpl_stm_reset_slave.test
rpl_stm_until.test
rpl_switch_stm_row_mixed.test Bug #16567 binlog_format option does not show when doing ./mysqd --help --verbose 2007-01-15 16:01:00 +02:00
rpl_temp_table.test
rpl_temporary.test
rpl_timezone-master.opt
rpl_timezone-slave.opt
rpl_timezone.test Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint 2006-11-15 10:31:23 +01:00
rpl_trigger.test Merge bk-internal.mysql.com:/home/bk/mysql-5.0 2006-11-30 02:36:18 +03:00
rpl_trunc_temp.test
rpl_truncate_2myisam.test
rpl_truncate_3innodb.test
rpl_truncate_7ndb.test Update result file 2006-10-05 00:36:03 +02:00
rpl_truncate_7ndb_2-master.opt
rpl_truncate_7ndb_2.test
rpl_user_variables.test Fix of incorrect merge of test case 2007-02-27 20:57:46 +01:00
rpl_variables-master.opt
rpl_variables.test Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0-maint 2006-11-15 10:31:23 +01:00
rpl_view-slave.opt
rpl_view.test
schema.test
select.test Merge mysql.com:/home/gluh/MySQL/Merge/5.0-opt 2007-02-26 15:54:43 +04: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 bk-internal.mysql.com:/home/bk/mysql-5.1-new-rpl 2007-03-06 16:44:14 +03:00
skip_grants-master.opt
skip_grants.test
skip_name_resolve-master.opt
skip_name_resolve.test
sp-big.test
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
sp-dynamic.test
sp-error.test Manual merge 2007-03-06 13:46:33 -07:00
sp-prelocking.test Remove compiler warnings 2006-11-20 22:42:06 +02:00
sp-security.test
sp-threads.test
sp-vars.test Bug#12976 (stored procedures local variables of type bit) 2007-02-06 16:01:22 -07:00
sp.test Merge moonlight.home:/home/tomash/src/mysql_ab/mysql-5.0-bug20492 2007-03-08 14:59:05 +03:00
sp_gis.test Made the test deterministic, so they don't depend on the SF cache. 2006-11-15 15:51:22 -07:00
sp_notembedded.test
sp_stress_case.test minor cleanup 2006-12-11 18:52:24 -07:00
sp_trans.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
sql_mode.test
ssl.test
ssl_compress.test
ssl_connect.test Add test for making sure there are no spurious connect failures when using SSL 2007-01-29 18:32:45 +01:00
ssl_des-master.opt Change the ssl related variables to loose so they work also when the server is compiled without ssl 2006-10-19 00:53:01 +02:00
ssl_des.test
status.test Merge mysql.com:/home/hf/work/mysql-5.0-mrg 2006-11-17 18:27:28 +04:00
strict.test Merge mysql.com:/home/my/mysql-5.0 2006-11-22 14:11:36 +02:00
strict_autoinc_1myisam.test
strict_autoinc_2innodb.test
strict_autoinc_3heap.test
strict_autoinc_5ndb.test
subselect.test Merge bodhi.local:/opt/local/work/mysql-5.0-runtime 2007-03-06 19:24:52 +03:00
subselect2.test
subselect3.test Fixed bug #24420. 2007-01-26 17:10:45 -08:00
subselect_gis.test
subselect_innodb.test
subselect_notembedded.test
sum_distinct-big.test
sum_distinct.test
symlink.test Use $MYSQLTESTVARDIR 2007-01-19 12:03:03 +01:00
synchronization.test Disabled syncronization test at it fails on multiple platforms. (Bug #24529) 2006-11-27 23:19:53 +02:00
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 WL #3031 2006-12-11 11:44:03 -05: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 WL #3031 2006-12-11 11:44:03 -05:00
system_mysql_db_fix50030-master.opt Update mysql_fix_privilege_tables.sql to handle upgrade from 5.0 while retaining 2006-11-21 17:44:43 +01:00
system_mysql_db_fix50030.test WL #3031 2006-12-11 11:44:03 -05:00
system_mysql_db_refs.test
tablelock.test
temp_table-master.opt
temp_table.test Give warnings for unused objects 2007-01-22 18:42:52 +02: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 Bug#16456 RBR: rpl_sp.test expects query to fail, but passes in RBR 2006-11-17 21:30:28 +01: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 Bug #23556: TRUNCATE TABLE still maps to DELETE 2006-11-21 10:25:10 +02:00
trigger-trans.test
trigger.test Manual merge 2007-03-06 13:46:33 -07:00
truncate.test
type_binary.test Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-01-22 19:18:22 +02:00
type_bit.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
type_bit_innodb.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
type_blob.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
type_date.test
type_datetime.test Merge mysql.com:/home/hf/work/mysql-5.0.clean 2006-11-08 19:09:39 +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
type_newdecimal.test Merge bk-internal:/home/bk/mysql-5.1 2006-11-28 17:14:16 +01:00
type_ranges.test
type_set.test
type_time.test
type_timestamp.test
type_uint.test
type_varchar.test Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-01-22 19:18:22 +02:00
type_year.test
udf.test Merge macbook.gmz:/Users/kgeorge/mysql/work/mysql-5.0-opt 2007-01-23 12:34:50 +02:00
union-master.opt
union.test
unsafe_binlog_innodb-master.opt
unsafe_binlog_innodb.test
update.test Bug #24010: INSERT INTO ... SELECT fails on unique constraint with data 2007-02-22 14:11:01 +01:00
upgrade.test Added --debug-info to most clients to detect memory leaks in mysql-test-run 2006-11-21 22:32:58 +02:00
user_limits.test
user_var-binlog.test Bug#17642 mysqlbinlog: Restore from row-based binlog fails 2006-12-14 14:05:25 +04: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 Merge mysql.com:/usr/home/bar/mysql-5.0.b22645 2006-12-05 16:09:27 +04:00
view.test Merge alik.opbmk:/mnt/raid/alik/MySQL/devel/5.0-rt-build 2007-02-23 20:53:49 +03:00
view_grant.test Merge moonlight.home:/home/tomash/src/mysql_ab/mysql-5.0-bug24404 2007-01-18 13:08:00 +03:00
view_query_cache.test
wait_for_process.sh IM test suite fix. 2007-02-24 13:12:20 +03:00
wait_for_socket.sh IM test suite fix. 2007-02-24 13:12:20 +03:00
wait_timeout-master.opt
wait_timeout.test Fixed compiler warnings 2007-02-23 13:13:55 +02:00
warnings-master.opt Fix for when shell version of mysql-test-run is called. 2007-01-05 22:28:53 -08:00
warnings.test Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-01-07 09:31:49 -05:00
warnings_engine_disabled-master.opt Bug#24997 warnings test case failure 2006-12-15 15:05:50 +01:00
warnings_engine_disabled.test Bug#24997 warnings test case failure 2006-12-15 15:05:50 +01:00
windows.test Merge naruto.:C:/cpp/bug17489/my50-bug17489 2006-12-10 17:01:27 +01:00
xa.test
xml.test Bug#24747 XPath error with the node name "Text" 2006-12-27 18:14:28 +04:00