mariadb/mysql-test/t
malff/marcsql@weblab.(none) a508260b85 Bug#25411 (trigger code truncated), PART II
Bug 28127 (Some valid identifiers names are not parsed correctly)
Bug 26302 (MySQL server cuts off trailing "*/" from comments in SP/func)

This patch is the second part of a major cleanup, required to fix
Bug 25411 (trigger code truncated).

The root cause of the issue stems from the function skip_rear_comments,
which was a work around to remove "extra" "*/" characters from the query
text, when parsing a query and reusing the text fragments to represent a
view, trigger, function or stored procedure.
The reason for this work around is that "special comments",
like /*!50002 XXX */, were not parsed properly, so that a query like:
  AAA /*!50002 BBB */ CCC
would be seen by the parser as "AAA BBB */ CCC" when the current version
is greater or equal to 5.0.2

The root cause of this stems from how special comments are parsed.
Special comments are really out-of-bound text that appear inside a query,
that affects how the parser behave.
In nature, /*!50002 XXX */ in MySQL is similar to the C concept
of preprocessing :
  #if VERSION >= 50002
  XXX
  #endif

Depending on the current VERSION of the server, either the special comment
should be expanded or it should be ignored, but in all cases the "text" of
the query should be re-written to strip the "/*!50002" and "*/" markers,
which does not belong to the SQL language itself.

Prior to this fix, these markers would leak into :
- the storage format for VIEW,
- the storage format for FUNCTION,
- the storage format for FUNCTION parameters, in mysql.proc (param_list),
- the storage format for PROCEDURE,
- the storage format for PROCEDURE parameters, in mysql.proc (param_list),
- the storage format for TRIGGER,
- the binary log used for replication.

In all cases, not only this cause format corruption, but also provide a vector
for dormant security issues, by allowing to tunnel code that will be activated
after an upgrade.

The proper solution is to deal with special comments strictly during parsing,
when accepting a query from the outside world.
Once a query is parsed and an object is created with a persistant
representation, this object should not arbitrarily mutate after an upgrade.
In short, special comments are a useful but limited feature for MYSQLdump,
when used at an *interface* level to facilitate import/export,
but bloating the server *internal* storage format is *not* the proper way
to deal with configuration management of the user logic.

With this fix:
- the Lex_input_stream class now acts as a comment pre-processor,
and either expands or ignore special comments on the fly.
- MYSQLlex and sql_yacc.yy have been cleaned up to strictly use the
public interface of Lex_input_stream. In particular, how the input stream
accepts or rejects a character is private to Lex_input_stream, and the
internal buffer pointers of that class are strictly private, and should not
be tempered with during parsing.

This caused many changes mostly in sql_lex.cc.

During the code cleanup in case MY_LEX_NUMBER_IDENT,
Bug 28127 (Some valid identifiers names are not parsed correctly)
was found and fixed.

By parsing special comments properly, and removing the function
'skip_rear_comments' [sic],
Bug 26302 (MySQL server cuts off trailing "*/" from comments in SP/func)
has been fixed as well.
2007-06-12 15:23:58 -06:00
..
1st.test
alias.test
alter_table-big.test Patch changing how ALTER TABLE implementation handles table locking 2007-05-19 10:49:56 +04:00
alter_table.test Merge olga.mysql.com:/home/igor/mysql-5.1 2007-06-03 22:52:02 -07:00
analyse.test
analyze.test
ansi.test
archive.test Merge mysql.com:/home/svoj/devel/bk/mysql-5.0-engines 2007-03-31 17:29:40 +05: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 Merge mysql.com:/home/hf/work/8663/my50-8663 2007-05-16 23:01:21 +05:00
binary.test
binlog_killed.test Merge aelkin@bk-internal.mysql.com:/home/bk/mysql-5.0-rpl 2007-05-30 22:33:54 +03:00
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 WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
binlog_row_mix_innodb_myisam.test - Fixing binary log positions 2007-03-30 10:27:08 +02: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 WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
binlog_stm_mix_innodb_myisam.test - Fixing binary log positions 2007-03-30 10:27:08 +02:00
binlog_stm_ps.test Test for bug #26842 moved to a separate file as it uses 'show binlog events' and fails with --binlog-format=row. 2007-05-25 17:24:45 +05:00
bool.test
bootstrap.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-20 12:48:15 +01:00
bulk_replace.test
cache_innodb-master.opt
cache_innodb.test
case.test
cast.test Merge dl145s.mysql.com:/users/mhansson/mysql/push/bug28250/my50-bug28250 2007-05-29 11:16:30 +02:00
check.test
client_xml.test bug#27608 XML output is not well-formed 2007-04-09 17:53:10 +05:00
comments.test Bug#25411 (trigger code truncated), PART II 2007-06-12 15:23:58 -06:00
compare.test
compress.test Bug#27327 information_schema status views, variable_value conversion 2007-04-03 14:24:35 +05:00
concurrent_innodb-master.opt
concurrent_innodb.test
connect.test
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 Cleanup tables created by test cases 2007-04-03 11:36:33 +02:00
create-big.test 5.1 version of fix for: 2007-05-23 15:26:16 +04:00
create.test 5.1 version of fix for: 2007-05-23 15:26:16 +04:00
create_not_windows.test
create_select_tmp.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
csv.test Remove non portable exec's from csv.test 2007-02-19 17:06:47 +01:00
ctype_big5.test
ctype_collate.test
ctype_cp932_binlog_row.test
ctype_cp932_binlog_stm.test Fix for bug #28436: Incorrect position in SHOW BINLOG EVENTS causes server coredump 2007-05-30 15:23:47 +05: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
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 Bug#27079 Crash while grouping empty ucs2 strings 2007-03-27 12:20:20 +05:00
ctype_ucs.test Bug#22638 SOUNDEX broken for international characters 2007-03-28 18:57:30 +05:00
ctype_ucs2_def-master.opt Bug#18743: Several test cases fails if "classic" configuration in 5.0 2007-02-19 13:57:06 +03:00
ctype_ucs2_def.test Corrected the error codes and messages for 5.1. This is to fix PB failures introduced by the patch for bug #27643. 2007-05-31 16:04:58 +04:00
ctype_ujis.test
ctype_utf8.test Merge mysql.com:/home/bar/mysql-5.0.b20095 2007-04-13 10:08:52 +05:00
date_formats-master.opt
date_formats.test Backport of TIME->MYSQL_TIME / Y2K fixset 2007-05-16 10:44:59 +02: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 mysql.com:/home/kent/bk/tmp/mysql-5.0-build 2007-03-20 17:58:30 +01:00
delete.test Bug #26186: 2007-02-23 18:49:41 +02:00
derived.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-26 11:49:24 +01:00
dirty_close.test
disabled.def Merge trift2.:/MySQL/M51/mysql-5.1 2007-06-04 11:24:49 +02:00
distinct.test Bug #27659: 2007-04-10 16:55:48 +03:00
drop.test
empty_table.test
endspace.test WL#3527: Extend IGNORE INDEX so places where index is ignored 2007-03-05 19:08:41 +02:00
errors.test BUG 27513: fixed left-over sql mode from a test case. 2007-04-04 13:38:19 +03:00
events.test Fix for 2007-05-26 16:36:38 +02:00
events_bugs.test Fix for 2007-05-26 16:36:38 +02:00
events_grant.test Fix for 2007-05-26 16:36:38 +02:00
events_logs_tests-master.opt
events_logs_tests.test Fix for 2007-05-26 16:36:38 +02:00
events_microsec.test
events_restart_phase1.test A set of changes aiming to make the Event Scheduler more user-friendly 2007-04-05 15:24:34 +04:00
events_restart_phase2-master.opt
events_restart_phase2.test A set of changes aiming to make the Event Scheduler more user-friendly 2007-04-05 15:24:34 +04:00
events_restart_phase3-master.opt
events_restart_phase3.test Fix for bug #28310 Server reports events which never were created 2007-05-29 12:44:44 +02:00
events_scheduling.test Fix for 2007-05-26 16:36:38 +02:00
events_stress.test Fix for 2007-05-26 16:36:38 +02:00
events_time_zone.test Fix for 2007-05-26 16:36:38 +02:00
events_trans.test Fix for 2007-05-26 16:36:38 +02:00
events_trans_notembedded.test Fix for 2007-05-26 16:36:38 +02:00
exampledb.test
execution_constants.test
explain.test sql_select.cc: 2007-03-08 00:27:42 +03:00
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 Fixed federated and some replication tests to not stop slave until it's up and running. 2007-04-17 14:41:16 +03:00
federated_transactions-slave.opt WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
federated_transactions.test
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
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
flush_block_commit_notembedded.test some test cases cannot run with --skip-log-bin 2007-05-31 09:34:24 +02: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 Merge mysql.com:/home/svoj/devel/mysql/BUG25951/mysql-5.0-engines 2007-04-18 13:27:04 +05:00
fulltext2.test
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
func_concat.test
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 Merge dl145s.mysql.com:/users/mhansson/mysql/push/bug23856/my50-bug23856 2007-05-22 14:48:49 +02:00
func_group.test Merge mysql.com:/d2/hf/mrg/mysql-5.0-opt 2007-05-18 20:00:49 +05: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 mysql.com:/home/hf/work/mrg/mysql-5.0-opt 2007-03-22 11:50:24 +04:00
func_isnull.test
func_like.test
func_math.test Merge polly.local:/home/kaa/src/maint/bug24912/my50-bug24912 2007-04-28 20:04:03 +04:00
func_misc.test Added casts to avoid compiler warnings and fixed a wrong type. 2007-05-31 17:45:22 +03:00
func_op.test
func_regexp.test
func_sapdb.test Backport of TIME->MYSQL_TIME / Y2K fixset 2007-05-16 10:44:59 +02:00
func_set.test
func_str.test Merge moonbone.local:/mnt/gentoo64/work/bk-trees/mysql-5.0-opt 2007-04-21 00:33:56 +04:00
func_system.test
func_test.test
func_time.test Merge polly.local:/tmp/maint/bug20293/my51-bug20293 2007-03-06 21:03:32 +03:00
func_timestamp.test
gcc296.test
gis-rtree.test merging 2007-03-15 17:35:31 +04:00
gis.test Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.1 2007-04-02 11:15:09 +02:00
grant.test Fiux syntax errors in grant.test, connect command with both -- and ; 2007-06-01 14:12:16 +02:00
grant2.test Merge mockturtle.local:/home/dlenev/src/mysql-5.0-like 2007-05-23 15:55:36 +04:00
grant3-master.opt
grant3.test
grant_cache_no_prot.test This changeset belongs to the fix of Bug#735 Prepared Statements: there is no support for Query Cache 2007-05-24 22:13:49 +02:00
grant_cache_ps_prot.test This changeset belongs to the fix of Bug#735 Prepared Statements: there is no support for Query Cache 2007-05-24 22:13:49 +02:00
greedy_optimizer.test Fixed portablity problem 2006-11-28 05:43:30 +02:00
group_by.test Merge mysql.com:/d2/hf/mrg/mysql-5.0-opt 2007-04-29 13:19:32 +05: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 BUG#26080 - Memory Storage engine not working properly 2007-02-28 14:27:19 +04:00
heap_auto_increment.test
heap_btree.test Merge chilla.local:/home/mydev/mysql-5.0-axmrg 2007-03-28 17:06:09 +02:00
heap_hash.test Corrected the error codes and messages for 5.1. This is to fix PB failures introduced by the patch for bug #27643. 2007-05-31 16:04:58 +04:00
help.test Merge tsmith@bk-internal.mysql.com:/home/bk/mysql-5.1 2007-03-22 01:04:39 +01:00
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
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 3d attempt to fix information_schema.test failure on HP-UX. 2007-04-06 00:38:57 +04:00
information_schema_chmod.test Bug #23125 [patch] trigger test fails when run as root 2006-12-22 00:38:34 +01:00
information_schema_db.test Bug #26817: mysqldump fails to backup database containing view with invalid definer 2007-03-23 19:24:03 +01: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 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-lock.test
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 Applied innodb-5.1-ss1404 snapshot 2007-04-18 19:53:28 -06: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 Merge olga.mysql.com:/home/igor/dev-opt/mysql-4.1-opt-bug28272 2007-05-15 13:16:10 -07: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
insert.test Merge vajra.(none):/opt/local/work/mysql-5.0-21483 2007-05-16 10:21:39 +04:00
insert_notembedded.test
insert_select.test Merge mysql.com:/home/hf/work/mrg/mysql-5.0-opt 2007-03-22 23:59:20 +04:00
insert_update.test Merge mysql.com:/home/hf/work/27957/my50-27957 2007-05-11 17:48:20 +05:00
join.test Merge magare.gmz:/home/kgeorge/mysql/work/B27531-5.0-opt 2007-05-04 17:46:13 +03: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 gleb.loc:/home/uchum/work/bk/mysql-5.0-opt 2007-05-28 00:22:44 +05:00
join_outer_innodb.test
key.test Bug #28476: force index on a disabled myisam index gives error 124 2007-05-22 15:58:30 +03:00
key_cache-master.opt
key_cache.test
key_diff.test
key_primary.test
keywords.test Fixed compiler warnings 2007-02-23 13:13:55 +02:00
kill.test Merge mysql.com:/d2/hf/mrg/mysql-5.0-opt 2007-05-31 14:23:45 +05:00
kill_n_check.sh IM test suite fix. 2007-02-24 13:12:20 +03:00
limit.test Fix for bug #28464: a string argument to 'limit ?' PS - replication fails 2007-05-18 12:08:07 +05:00
loaddata.test Merge bk-internal.mysql.com:/data0/bk/mysql-5.0-opt 2007-05-09 12:55:05 +02:00
loaddata_autocom_innodb.test
loaddata_autocom_ndb.test
lock.test BUG#9953: CONVERT_TZ requires mysql.time_zone_name to be locked 2007-03-09 13:12:31 +03:00
lock_multi.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-27 11:39:29 +01:00
lock_tables_lost_commit-master.opt
lock_tables_lost_commit.test
log.sh IM test suite fix. 2007-02-24 13:12:20 +03:00
log_state-master.opt
log_state.test Bug #27070 server logs are created unrequested and in wrong directory 2007-03-23 13:39:16 +01:00
log_tables-big-master.opt Bug #27638: slow logging to CSV table inserts bad query_time and lock_time values 2007-04-04 21:40:47 +02:00
log_tables-big.test Bug #27638: slow logging to CSV table inserts bad query_time and lock_time values 2007-04-04 21:40:47 +02:00
log_tables-master.opt
log_tables.test WL#2936 2007-03-02 08:43:45 -08:00
lowercase_fs_off.test
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
lowercase_table2.test
lowercase_table3-master.opt
lowercase_table3.test
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 mysql.com:/home/svoj/devel/mysql/BUG24342/mysql-5.0-engines 2007-04-18 16:35:22 +05:00
metadata.test Bug #28492: subselect returns LONG in >5.0.24a and LONGLONG in <=5.0.24a 2007-05-30 09:55:38 +03:00
mix2_myisam.test
mix2_myisam_ucs2.test 5.1-specific fix for bug #18743. 2007-02-19 15:31:55 +03:00
multi_statement-master.opt
multi_statement.test
multi_update-master.opt
multi_update.test
myisam-blob-master.opt WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
myisam-blob.test
myisam-system.test Clear field_alloc when it's moved to result set (allows us to always call free_root on field_alloc) 2007-04-16 17:08:29 +03:00
myisam.test Merge magare.gmz:/home/kgeorge/mysql/work/B28476-5.0-opt 2007-05-22 17:57:14 +03:00
mysql.test Merge bodhi.(none):/opt/local/work/mysql-5.0-runtime 2007-06-01 17:50:24 +04: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_cp932.test Moved the test requiring cp932 to a separate unit. 2007-02-21 19:50:48 +03:00
mysql_delimiter.sql Bug#19799 delimiter command not working correctly when sourcing a sql file 2006-11-22 01:27:06 -05:00
mysql_delimiter_19799.sql
mysql_delimiter_source.sql
mysql_protocols.test
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 Merge pilot.mysql.com:/home/msvensson/mysql/mysql-4.1 2007-01-17 11:13:03 +01:00
mysqlbinlog-cp932-master.opt Force the server restart before running mysqlbinlog-cp932.test to fix PB failures introduced by the patch for bug #18743. 2007-02-22 15:28:42 +03:00
mysqlbinlog-cp932.test some test cases cannot run with --skip-log-bin 2007-05-31 09:34:24 +02:00
mysqlbinlog-master.opt
mysqlbinlog.test Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.0-build-work-nn 2007-05-31 10:00:49 +02:00
mysqlbinlog2.test some test cases cannot run with --skip-log-bin 2007-05-31 09:34:24 +02: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
mysqldump.test Merge trift2.:/MySQL/M51/mysql-5.1 2007-06-05 10:39:02 +02:00
mysqlshow.test
mysqlslap.test Added pre and post option to test run (allows me to adjust an engine once all of the data has been loaded). 2007-03-26 02:24:49 -07:00
mysqltest.test Merge trift2.:/MySQL/M51/mysql-5.1 2007-06-06 19:59:18 +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 Clear field_alloc when it's moved to result set (allows us to always call free_root on field_alloc) 2007-04-16 17:08:29 +03:00
ndb_autodiscover2-master.opt
ndb_autodiscover2.test
ndb_autodiscover3.test Merge whalegate.ndb.mysql.com:/home/tomas/mysql-5.0-ndb 2007-04-05 09:13:20 +02:00
ndb_basic.test Bug #28719: multi pk update ignore corrupts data 2007-05-28 14:13:42 +02: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 disable test if log bin is not turned on 2007-05-14 14:39:37 +02:00
ndb_binlog_ddl_multi.test revert back to old show_binlog_events asto many test failures, and create a show_binlog_events2 instead 2007-04-18 23:08:56 +02:00
ndb_binlog_discover.test revert back to old show_binlog_events asto many test failures, and create a show_binlog_events2 instead 2007-04-18 23:08:56 +02:00
ndb_binlog_ignore_db-master.opt
ndb_binlog_ignore_db.test corrrection of test case 2007-04-19 06:24:36 +02:00
ndb_binlog_log_bin.test revert back to old show_binlog_events asto many test failures, and create a show_binlog_events2 instead 2007-04-18 23:08:56 +02:00
ndb_binlog_multi.test revert back to old show_binlog_events asto many test failures, and create a show_binlog_events2 instead 2007-04-18 23:08:56 +02:00
ndb_bitfield.test
ndb_blob.test Merge clam.ndb.mysql.com:/export/space/pekka/ndb/version/my50-bug24028 2007-03-22 07:40:04 +01: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_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#24667 After ALTER TABLE operation ndb_dd table becomes regular ndb, Bug #25296 Truncate table converts NDB disk based tables to in-memory tables: Added more checks in tests 2007-04-19 10:48:24 +02:00
ndb_dd_backuprestore.test
ndb_dd_basic.test mysql-test/t/ndb_dd_basic.test 2007-04-19 11:05:25 +02:00
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_gis.test
ndb_grant.later
ndb_index.test
ndb_index_ordered.test Merge pilot.blaudden:/home/msvensson/mysql/bug20166/my50-bug20166 2007-02-26 14:25:59 +01:00
ndb_index_unique.test Change to new (after merge) error numbers 2007-01-23 01:58:07 +02:00
ndb_insert.test Merge mysql.com:/windows/Linux_space/MySQL/mysql-5.0-ndb 2007-05-02 11:05:48 +02:00
ndb_limit.test
ndb_load.test
ndb_loaddatalocal.test Clear field_alloc when it's moved to result set (allows us to always call free_root on field_alloc) 2007-04-16 17:08:29 +03:00
ndb_lock.test Fixed compiler warnings 2007-02-23 13:13:55 +02:00
ndb_minmax.test
ndb_multi.test Merge pilot.blaudden:/home/msvensson/mysql/bug20166/my50-bug20166 2007-02-26 14:25:59 +01:00
ndb_multi_row.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-28 20:33:59 +01:00
ndb_partition_error.test
ndb_partition_error2-master.opt Bug #27359 Partition: memory allocation error message 2007-03-27 18:39:11 +05:00
ndb_partition_error2.test Bug #27359 Partition: memory allocation error message 2007-03-27 18:39:11 +05:00
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 to set correct value force varpart 2007-04-30 11:43:50 +02:00
ndb_restore_compat.test ndb_restore to set correct value force varpart 2007-04-30 11:43:50 +02:00
ndb_restore_partition-master.opt
ndb_restore_partition.test
ndb_restore_print.test medium int printout support 2007-03-08 15:37:53 +07:00
ndb_row_format.test bugfix in checksum with force varpart 2007-05-04 12:19:06 +02:00
ndb_single_user.test some more tests + drop stuff after done 2007-04-16 14:15:30 +02:00
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 Merge mysql.com:/windows/Linux_space/MySQL/mysql-5.0 2007-04-04 13:21:49 +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 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
not_embedded_server.test
not_partition.test
null.test
null_key.test
odbc.test
olap.test Merge olga.mysql.com:/home/igor/mysql-4.1-opt 2007-04-29 18:32:59 -07:00
openssl_1.test Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint 2007-04-11 23:43:58 +02:00
order_by.test Merge bodhi.(none):/opt/local/work/mysql-5.0-runtime 2007-06-01 17:50:24 +04:00
order_fill_sortbuf-master.opt
order_fill_sortbuf.test
outfile.test Merge siva.hindu.god:/home/tsmith/m/bk/51 2007-05-17 14:21:35 -06: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#22687 (Functions UNIQUE_USERS, GROUP_UNIQUE_USERS) 2007-01-11 14:58:05 -07:00
parser_bug21114_innodb.test
partition-master.opt
partition.test Bug #28005 Partitions: can't use -9223372036854775808 2007-05-06 23:40:16 +05: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 Bug #23675 Partitions: possible security breach via alter 2007-04-04 14:01:47 +05:00
partition_hash.test Two test cases didn't work without Blackhole compiled into the server. 2007-04-26 08:22:05 +02:00
partition_innodb.test more wl#2936 fixes: removed implicit ha_thd() calls (too error-prone), 2007-04-15 15:47:27 +02:00
partition_list.test
partition_mgm.test
partition_mgm_err.test
partition_mgm_err2.test Fix for valgrind errors in test: require symlink support for partition_not_windows.test 2007-04-25 20:21:55 +02:00
partition_not_windows-master.opt Add --symbolic-links=1 for partition_not_windows-master.opt. 2007-04-25 22:55:19 +02:00
partition_not_windows.test Add --symbolic-links=1 for partition_not_windows-master.opt. 2007-04-25 22:55:19 +02:00
partition_order.test
partition_pruning.test
partition_range.test
partition_windows.test Bug#25141 Crash Server on Partitioning command 2007-04-23 13:50:34 -04:00
perror.test
plugin-master.opt BUG#28341 - Security issue still in library loading 2007-05-18 16:23:46 +05:00
plugin.test BUG#25659 - memory leak via "plugins" test 2007-05-21 17:48:29 +05:00
preload.test
ps-master.opt
ps.test Merge trift2.:/MySQL/M51/mysql-5.1 2007-06-06 19:59:18 +02:00
ps_1general.test Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-05-15 17:54:11 +04:00
ps_2myisam.test
ps_3innodb.test
ps_4heap.test
ps_5merge.test
ps_7ndb.test
ps_10nestset.test
ps_11bugs.test
ps_grant.test
ps_not_windows.test ps_not_windows disabled in embedded server 2007-01-03 03:31:12 +04:00
query_cache.test Corrected test case for 5.1 requirements 2007-05-08 11:56:47 +02: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_ps_no_prot.test This changeset belongs to the fix of Bug#735 Prepared Statements: there is no support for Query Cache 2007-05-24 22:13:49 +02:00
query_cache_ps_ps_prot.test This changeset belongs to the fix of Bug#735 Prepared Statements: there is no support for Query Cache 2007-05-24 22:13:49 +02:00
range.test Merge mysql.com:/home/psergey/bk-trees/mysql-5.0-opt 2007-03-31 03:12:33 +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
rename.test
renamedb.test
repair.test
replace.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
rollback.test
round.test
row.test Fix some mysqltest warnings. 2007-06-01 17:49:01 +04:00
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 WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
rpl_auto_increment.test
rpl_auto_increment_11932.test
rpl_bit.test
rpl_bit_npk.test
rpl_change_master.test
rpl_charset_sjis.test
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 Bug#18946 Test case rpl_ndb_ddl disabled 2007-03-06 18:15:31 +01:00
rpl_deadlock_innodb-slave.opt WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
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
rpl_drop_temp-slave.opt
rpl_drop_temp.test
rpl_dual_pos_advance-master.opt
rpl_dual_pos_advance.test Bug#27070 server logs are created unrequested and in wrong directory 2007-03-20 11:15:15 +01:00
rpl_EE_err.test
rpl_empty_master_crash-master.opt
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_events.test WL#3629 - Replication of Invocation and Invoked Features 2007-03-16 09:56:57 -04:00
rpl_extraCol_innodb-master.opt
rpl_extraCol_innodb-slave.opt
rpl_extraCol_innodb.test
rpl_extraCol_myisam.test
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 Fixed federated and some replication tests to not stop slave until it's up and running. 2007-04-17 14:41:16 +03:00
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
rpl_ignore_table-slave.opt
rpl_ignore_table.test Cleanup tables created by test cases 2007-04-03 11:36:33 +02:00
rpl_ignore_table_update-slave.opt
rpl_ignore_table_update.test
rpl_incident-master.opt GLOBAL DEBUG variable does not work 2007-03-31 13:48:33 +02:00
rpl_incident.test Added extra parenthesis to remove compiler warning 2007-05-30 11:55:56 +02:00
rpl_init_slave-slave.opt
rpl_init_slave.test
rpl_innodb.test
rpl_insert.test
rpl_insert_id-slave.opt WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
rpl_insert_id.test Fix for BUG#24432 2007-02-08 15:53:14 +01:00
rpl_insert_id_pk-slave.opt WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
rpl_insert_id_pk.test
rpl_insert_ignore-slave.opt WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
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 Fix a typo in the test case. 2007-06-01 18:04:25 +04: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 Merge romeo.(none):/home/bkroot/mysql-5.1-new-rpl 2007-03-29 21:38:03 +02:00
rpl_loaddata_simple.test After merge fix 2007-03-01 18:16:17 +04:00
rpl_loaddatalocal.test Clear field_alloc when it's moved to result set (allows us to always call free_root on field_alloc) 2007-04-16 17:08:29 +03: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 Clear field_alloc when it's moved to result set (allows us to always call free_root on field_alloc) 2007-04-16 17:08:29 +03:00
rpl_many_optimize.test
rpl_master_pos_wait.test
rpl_misc_functions-slave.sh
rpl_misc_functions.test Clear field_alloc when it's moved to result set (allows us to always call free_root on field_alloc) 2007-04-16 17:08:29 +03:00
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 WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
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
rpl_ndb_bank.test Use "diff_files" instead ot "exec diff" 2007-02-20 18:47:47 +01:00
rpl_ndb_basic.test Masking out error that is not generated by the test (rpl_ndb_basic.test) itself 2007-05-30 15:56:05 +02:00
rpl_ndb_blob.test
rpl_ndb_blob2.test
rpl_ndb_charset.test
rpl_ndb_circular.test Bug#17095 circular replication for ndb 2007-04-12 16:13:49 +02:00
rpl_ndb_circular_simplex.test Fixing test case and result file for rpl_ndb_circular_simplex. 2007-04-17 08:36:14 +02:00
rpl_ndb_commit_afterflush.test
rpl_ndb_dd_advance.test Use "diff_files" instead ot "exec diff" 2007-02-20 18:47:47 +01:00
rpl_ndb_dd_basic.test revert back to old show_binlog_events asto many test failures, and create a show_binlog_events2 instead 2007-04-18 23:08:56 +02:00
rpl_ndb_dd_partitions.test
rpl_ndb_ddl.test Minor improvement to save some testing runtime (~ 2 minutes). 2007-04-26 17:49:50 +02: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 BUG#27044 bug fix of 27320 fixes this, added test case 2007-03-22 13:17:08 +01:00
rpl_ndb_extraCol.test
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 Bug#19710 2007-04-28 10:32:14 +08:00
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 Bug#19710 2007-04-28 10:32:14 +08:00
rpl_ndb_myisam2ndb.test
rpl_ndb_relayrotate-slave.opt WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
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_stm_innodb-master.opt Bug #26783 replication status unknown after cluster or mysqld failure 2007-04-03 07:20:55 +02:00
rpl_ndb_stm_innodb.test Bug #26783 replication status unknown after cluster or mysqld failure 2007-04-03 07:20:55 +02:00
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_optimize.test
rpl_packet-master.opt
rpl_packet-slave.opt
rpl_packet.test Merge pilot.(none):/data/msvensson/mysql/bug28497/my50-bug28497 2007-06-01 13:50:59 +02:00
rpl_ps.test
rpl_rbr_to_sbr.test Clear field_alloc when it's moved to result set (allows us to always call free_root on field_alloc) 2007-04-16 17:08:29 +03:00
rpl_read_only-slave.opt WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
rpl_read_only.test Make sure tests drops objects created and restore variables to default 2007-03-01 14:16:38 +01: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 WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
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 pilot.blaudden:/home/msvensson/mysql/bug27438/my50-bug27438 2007-05-24 12:03:55 +02: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 WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
rpl_row_basic_11bugs-slave.opt WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
rpl_row_basic_11bugs.test Fix test case that was broken for builds without InnoDB. 2007-04-25 21:33:18 +02: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 WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
rpl_row_create_table.test Fix to rpl_row_create_table test. 2007-03-31 19:10:25 +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 Merge romeo.(none):/home/bkroot/mysql-5.1-new-rpl 2007-03-29 21:38:03 +02:00
rpl_row_func001.test
rpl_row_func002.test Make sure tests drops objects created and restore variables to default 2007-03-01 14:16:38 +01:00
rpl_row_func003-slave.opt WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
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 Merge mysql.com:/nfsdisk1/lars/bkroot/mysql-5.1-new-rpl 2007-05-28 09:25:40 +02:00
rpl_row_mystery22.test
rpl_row_NOW.test Clear field_alloc when it's moved to result set (allows us to always call free_root on field_alloc) 2007-04-16 17:08:29 +03:00
rpl_row_reset_slave.test
rpl_row_sp001.test Clear field_alloc when it's moved to result set (allows us to always call free_root on field_alloc) 2007-04-16 17:08:29 +03:00
rpl_row_sp002_innodb-master.opt
rpl_row_sp002_innodb-slave.opt
rpl_row_sp002_innodb.test
rpl_row_sp003-master.opt WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
rpl_row_sp003-slave.opt WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
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 Make sure tests drops objects created and restore variables to default 2007-03-01 14:16:38 +01:00
rpl_row_sp009.test
rpl_row_sp010.test
rpl_row_sp011.test Clear field_alloc when it's moved to result set (allows us to always call free_root on field_alloc) 2007-04-16 17:08:29 +03:00
rpl_row_sp012.test Make sure tests drops objects created and restore variables to default 2007-03-01 14:16:38 +01:00
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 Use "diff_files" instead ot "exec diff" 2007-02-20 18:47:47 +01:00
rpl_row_trig002.test
rpl_row_trig003.test Use "diff_files" instead ot "exec diff" 2007-02-20 18:47:47 +01:00
rpl_row_trig004.test
rpl_row_until.test Changed to vertical output for rpl_row_until.test 2007-05-30 17:00:48 +02:00
rpl_row_USER.test Make sure tests drops objects created and restore variables to default 2007-03-01 14:16:38 +01:00
rpl_row_UUID.test
rpl_row_view01.test Make sure tests drops objects created and restore variables to default 2007-03-01 14:16:38 +01:00
rpl_server_id1.test
rpl_server_id2-slave.opt
rpl_server_id2.test
rpl_session_var.test
rpl_set_charset.test
rpl_sf.test
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 Make sure tests drops objects created and restore variables to default 2007-03-01 14:16:38 +01:00
rpl_sp-master.opt
rpl_sp-slave.opt
rpl_sp.test Merge romeo.(none):/home/bkroot/mysql-5.1-new-rpl 2007-03-29 21:38:03 +02:00
rpl_sp004.test Use "diff_files" instead ot "exec diff" 2007-02-20 18:47:47 +01:00
rpl_sp_effects-master.opt
rpl_sp_effects-slave.opt
rpl_sp_effects.test
rpl_sporadic_master-master.opt
rpl_sporadic_master.test
rpl_ssl.test Add replace_result for things that are not tested 2007-04-11 09:06:27 +02:00
rpl_ssl1.test After merge fixes 2007-03-29 16:11:02 +02:00
rpl_start_stop_slave.test
rpl_stm_000001-slave.opt WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02:00
rpl_stm_000001.test
rpl_stm_charset.test
rpl_stm_EE_err2.test
rpl_stm_flsh_tbls.test Merge romeo.(none):/home/bkroot/mysql-5.1-new-rpl 2007-03-29 21:38:03 +02:00
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
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 Merge romeo.(none):/home/bkroot/mysql-5.1-new-rpl 2007-03-29 21:38:03 +02:00
rpl_temp_table.test
rpl_temporary.test Merge pilot.blaudden:/home/msvensson/mysql/bug20166/my51-bug20166 2007-02-27 14:55:00 +01:00
rpl_timezone-master.opt
rpl_timezone-slave.opt
rpl_timezone.test
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
rpl_truncate_7ndb_2-master.opt
rpl_truncate_7ndb_2.test
rpl_udf-master.opt Addition to fix for 2007-05-21 11:34:39 +05:00
rpl_udf-slave.opt Addition to fix for 2007-05-21 11:34:39 +05:00
rpl_udf.test WL#3629 - Replication of Invocation and Invoked Features 2007-03-16 09:56:57 -04:00
rpl_user_variables.test Test for bug #26842 moved to a separate file as it uses 'show binlog events' and fails with --binlog-format=row. 2007-05-25 17:24:45 +05:00
rpl_variables-master.opt
rpl_variables.test
rpl_view-slave.opt
rpl_view.test Merge gleb.loc:/home/uchum/work/bk/mysql-5.0-opt 2007-05-31 21:11:01 +05:00
schema.test
select.test Merge olga.mysql.com:/home/igor/mysql-5.0-opt 2007-04-11 15:12:49 -07:00
select_found.test
select_safe.test
show_check-master.opt
show_check.test Clear field_alloc when it's moved to result set (allows us to always call free_root on field_alloc) 2007-04-16 17:08:29 +03:00
skip_grants-master.opt
skip_grants.test Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-03-20 00:42:11 +03:00
skip_name_resolve-master.opt
skip_name_resolve.test
sp-big.test
sp-code.test Merge adventure.(none):/home/thek/Development/cpp/bug26977/my50-bug26977 2007-05-07 10:26:20 +02:00
sp-destruct.test Merge recycle.(none):/src/bug27144/my50-bug27144 2007-03-21 14:01:39 -04:00
sp-dynamic.test
sp-error.test Merge vajra.(none):/opt/local/work/mysql-5.0-runtime 2007-05-18 12:33:12 +04:00
sp-prelocking.test Bug #27907 "Misleading error message when opening/locking tables" 2007-05-18 12:29:06 +04:00
sp-security.test Merge ua141d10.elisa.omakaista.fi:/home/my/bk/mysql-5.0-marvel 2007-03-29 17:27:42 +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 Merge adventure.(none):/home/thek/Development/cpp/bug26277/my51-bug26277 2007-05-18 14:29:24 +02:00
sp.test Bug#25411 (trigger code truncated), PART II 2007-06-12 15:23:58 -06:00
sp_gis.test
sp_notembedded.test
sp_stress_case.test minor cleanup 2006-12-11 18:52:24 -07:00
sp_trans.test Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.0-build-work-nn 2007-05-31 10:00:49 +02:00
sp_trans_log.test test fixed for embedded server 2007-04-21 13:26:44 +05:00
sql_mode.test Added sql_mode PAD_CHAR_TO_FULL_LENGTH (WL#921) 2007-04-27 01:12:09 +03:00
ssl.test Add "have_ssl" as synonym for "have_openssl" 2007-03-05 10:03:42 +01:00
ssl_compress.test Add "have_ssl" as synonym for "have_openssl" 2007-03-05 10:03:42 +01:00
ssl_connect.test Add "have_ssl" as synonym for "have_openssl" 2007-03-05 10:03:42 +01:00
status.test
strict.test Merge bk-internal.mysql.com:/data0/bk/mysql-5.0 2007-06-02 00:57:25 +02:00
strict_autoinc_1myisam.test
strict_autoinc_2innodb.test
strict_autoinc_3heap.test
strict_autoinc_5ndb.test
subselect.test Merge olga.mysql.com:/home/igor/mysql-5.0-opt 2007-06-04 03:16:17 -07:00
subselect2.test
subselect3.test Merge olga.mysql.com:/home/igor/mysql-5.1 2007-06-03 22:52:02 -07:00
subselect_gis.test
subselect_innodb.test
subselect_notembedded.test
sum_distinct-big.test
sum_distinct.test
symlink.test Fix for valgrind errors in test: require symlink support for partition_not_windows.test 2007-04-25 20:21:55 +02: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
system_mysql_db_fix30020.test Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint 2007-04-04 15:43:03 +02:00
system_mysql_db_fix40123-master.opt
system_mysql_db_fix40123.test Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint 2007-04-04 15:43:03 +02:00
system_mysql_db_fix50030-master.opt
system_mysql_db_fix50030.test WL #3031 2006-12-11 11:44:03 -05:00
system_mysql_db_fix50117-master.opt Bug#28521 Upgrade from 5.1.17 to 5.1.18 breaks events 2007-05-19 18:55:38 +02:00
system_mysql_db_fix50117.test Bug#28521 Upgrade from 5.1.17 to 5.1.18 breaks events 2007-05-19 18:55:38 +02:00
system_mysql_db_refs.test
tablelock.test
temp_table-master.opt
temp_table.test Merge mysql.com:/home/hf/work/mrg/mysql-5.0-opt 2007-03-22 23:59:20 +04:00
timezone-master.opt
timezone.test
timezone2.test BUG#9953: CONVERT_TZ requires mysql.time_zone_name to be locked 2007-03-09 13:12:31 +03:00
timezone3-master.opt
timezone3.test
timezone4-master.opt
timezone4.test
timezone_grant.test
trigger-compat.test
trigger-grant.test Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint 2007-02-26 11:00:17 +01:00
trigger-trans.test
trigger.test Bug#25411 (trigger code truncated), PART II 2007-06-12 15:23:58 -06:00
truncate.test reverted the fix for Bug#5507 2007-04-17 12:32:01 +02:00
type_binary.test Merge bk-internal.mysql.com:/home/bk/mysql-5.1 2007-01-22 19:18:22 +02:00
type_bit.test Fix for bug #28631: Bit index creation failure after alter 2007-05-29 16:24:12 +05:00
type_bit_innodb.test Give warnings for unused objects 2007-01-22 18:42:52 +02:00
type_blob.test Merge pilot.mysql.com:/home/msvensson/mysql/mysql-5.0-maint 2007-02-14 14:51:49 +01:00
type_date.test Bug#26277 User variable returns one type in SELECT @v and other for CREATE as SELECT @v 2007-05-18 12:44:03 +02:00
type_datetime.test Merge quadxeon.mysql.com:/benchmarks/ext3/TOSAVE/tsmith/bk/51 2007-05-21 20:51:31 +02:00
type_decimal.test
type_enum.test Merge mysql.com:/d2/hf/mrg/mysql-5.0-opt 2007-05-31 14:23:45 +05:00
type_float.test Fix for bug #28121 "INSERT or UPDATE into DOUBLE(200,0) field being truncated to 31 digits" 2007-05-28 12:44:59 +04:00
type_nchar.test
type_newdecimal-big.test
type_newdecimal.test Merge bk@192.168.21.1:mysql-5.0-opt 2007-05-21 22:28:50 +05:00
type_ranges.test
type_set.test Bug#27069 set with identical elements are created 2007-04-02 15:01:19 +05:00
type_time.test
type_timestamp.test
type_uint.test
type_varchar.test Merge pilot.blaudden:/home/msvensson/mysql/mysql-5.0-maint 2007-02-23 18:10:36 +01:00
type_year.test Fix for bugs 2007-03-29 09:08:30 +05:00
udf-master.opt BUG#28341 - Security issue still in library loading 2007-05-18 16:23:46 +05:00
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 Merge mysql.com:/home/hf/work/mrg/mysql-5.0-opt 2007-03-22 11:43:23 +04:00
unsafe_binlog_innodb-master.opt
unsafe_binlog_innodb.test
update.test Fix for bug #22364 "Inconsistent "matched rows" when executing UPDATE" 2007-04-23 18:22:33 +04:00
upgrade.test
user_limits.test
user_var-binlog.test Merge pippilotta.erinye.com:/shared/home/df/mysql/build/mysql-5.0-build-work-nn 2007-05-31 10:00:49 +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 Bug#25411 (trigger code truncated), PART II 2007-06-12 15:23:58 -06:00
variables-big.test Bug #27322 failure to allocate transaction_prealloc_size causes crash 2007-04-12 18:03:26 -04:00
variables.test Merge bk-internal.mysql.com:/home/bk/mysql-5.1-engines 2007-04-27 19:09:39 +02:00
view.test Merge gleb.loc:/home/uchum/work/bk/mysql-5.0-opt 2007-06-01 03:05:25 +05:00
view_grant.test Merge ua141d10.elisa.omakaista.fi:/home/my/bk/mysql-5.0-marvel 2007-03-29 17:27:42 +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 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 Fixed compiler warnings 2007-02-23 13:13:55 +02:00
warnings-master.opt WL#2936 - Falcon & MySQL plugin interface: server variables 2007-05-04 16:10:09 +02: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 WL#2936 2007-03-02 08:43:45 -08:00
warnings_engine_disabled.test Bug#24997 warnings test case failure 2006-12-15 15:05:50 +01:00
windows.test Merge bk@192.168.21.1:mysql-5.1 2007-04-29 18:52:14 +05:00
xa.test Bug#20166 mysql-test-run.pl does not test system privilege tables creation 2007-02-26 11:49:24 +01:00
xml.test Bug#28558 UpdateXML called with garbage crashes server 2007-05-23 12:34:47 +05:00