mariadb/mysql-test/t
unknown c910050a76 Implement WL#2661 "Prepared Statements: Dynamic SQL in Stored Procedures".
The idea of the patch is to separate statement processing logic,
such as parsing, validation of the parsed tree, execution and cleanup, 
from global query processing logic, such as logging, resetting
priorities of a thread, resetting stored procedure cache, resetting
thread count of errors and warnings.
This makes PREPARE and EXECUTE behave similarly to the rest of SQL
statements and allows their use in stored procedures.
This patch contains a change in behaviour:
until recently for each SQL prepared statement command, 2 queries
were written to the general log, e.g.
[Query]   prepare stmt from @stmt_text;
[Prepare] select * from t1 <-- contents of @stmt_text
The chagne was necessary to prevent [Prepare] commands from being written
to the general log when executing a stored procedure with Dynamic SQL.
We should consider whether the old behavior is preferrable and probably
restore it.
This patch refixes Bug#7115, Bug#10975 (partially), Bug#10605 (various bugs
in Dynamic SQL reported before it was disabled).


mysql-test/r/not_embedded_server.result:
  Since we don't want to log Dynamic SQL in stored procedures,
  now the general log gets only one log entry per SQL statement.
mysql-test/r/sp-error.result:
  - remove obsolete tests
  - a better error message for the case when a stored procedure that
  returns a result set is called from a function
mysql-test/r/trigger.result:
  - a better error message for the case when a stored procedure that
  returns a result set is called from a trigger
mysql-test/t/sp-error.test:
  - a better error message for the case when a stored procedure that
    returns a result set is called from a function.
  - move the comment to its place (end of file).
mysql-test/t/trigger.test:
  - a better error message for the case when a stored procedure that
  returns a result set is called from a trigger
sql/item_func.cc:
  - we need to pass sql_command explicitly to get_var_with_binlog, because
  when creating a query for SQL prepared statement thd->lex->sql_command
  points at SQLCOM_EXECUTE, which is not listed in the list of update
  queries.
sql/log_event.h:
  - remove an extra copy of the previous sentence
sql/mysql_priv.h:
  - fix declarations of sql_prepare.cc API
sql/share/errmsg.txt:
  - a new error message, when one attempts to execute a prepared statement
  which is currently being executed (this can happen only in Dynamic SQL
  at the moment).
sql/sp_head.cc:
  - extend sp_multi_results_command to return different flags for a
  command (and rename it)
  - add support for SQLCOM_PREPARE,SQLCOM_EXECUTE, SQLCOM_DEALLOCATE
    to sp_get_flags_for_command
  - replace multiple boolean sp_head members with uint m_flags
  - a fix for a crash when user variables are used in a stored procedure
    and binlog is on. A temporary fix for Bug#12637 "SP crashes the server 
   if it has update query with user var & binlog is enabled", which actually
   stands for stored functions: now instead of a crash we break
   replication if a user variable is used in a stored function which 
   is executed in prelocked mode.
sql/sp_head.h:
  - replace multiple boolean flags of sp_head with uint m_flags;
  - add flag CONTAINS_DYNAMIC_SQL
  - use this flag to error if a stored procedure with Dynamic SQL is
    called from a function or trigger.
sql/sql_class.cc:
  - Statement_map::insert should not delete a statement if it exists,
    now it's done externally to be able to handle the case when the
    statement being deleted is in use.
  - remove extra code (free_list is already reset in free_items)
sql/sql_lex.cc:
  - add lex->stmt_prepare_mode; we can't rely on thd->command any more,
    because we don't reset it any more (Dynamic SQL requirement is that
    PS are as little intrusive as possible).
sql/sql_lex.h:
  - declare bool LEX::stmt_prepare_mode
sql/sql_parse.cc:
  - move prepared statement code to sql_prepare.cc
  - change declarations (refactored code)
  - better error message when one attempts to use Dynamic SQL or a 
    stored procedure that returns a result set in a function or trigger.
sql/sql_prepare.cc:
  - major refactoring to ensure PREPARE/EXECUTE commands do not reset global THD
    state and allow their use in stored procedures.
  - add Prepared_statement::flags and use it to ensure no recursive execution
    of a prepared statement is possible
  - better comments
sql/sql_yacc.yy:
  - enable PREPARE/EXECUTE/DEALLOCATE in stored procedures
  - produce an error message on attempt to use PREPARE/EXECUTE/DEALLOCATE
    in a stored function or trigger
mysql-test/r/sp-dynamic.result:
  - sp-dynamic.test results
mysql-test/t/sp-dynamic.test:
  - a new test for PREPARE/EXECUTE/DEALLOCATE in stored procedures.
2005-09-03 03:13:18 +04:00
..
alias.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
alter_table.test Merge mysql.com:/home/mydev/mysql-5.0 2005-08-30 08:18:27 +02:00
analyse.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
analyze.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ansi.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
archive.test Fix for bad merge. 2005-08-30 11:04:23 -07:00
auto_increment.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
backup-master.sh Don't allow BACKUP TABLE to overwrite files 2003-03-10 11:22:37 +02:00
backup.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
bdb-alter-table-1.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bdb-alter-table-2-master.opt Some trivial optimzations 2002-09-03 15:44:25 +03:00
bdb-alter-table-2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bdb-crash.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bdb-deadlock.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bdb-deadlock.tminus Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bdb.test WL#2486 - natural and using join according to SQL:2003 2005-08-23 18:08:04 +03:00
bdb_cache-master.opt fixed bdb transaction with query cache bug 2002-11-06 00:41:25 +02:00
bdb_cache.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bench_count_distinct.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bigint.test Merge xiphis.org:/usr/home/antony/work2/mysql-4.1 2005-08-11 12:18:53 +01:00
binary.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
binlog-master.opt innodb-dependent test moved from rpl_rotate_logs.test to binlog.test 2005-02-23 20:35:59 +01:00
binlog.test Fixed binlog.test failure which occured after patch implementing 2005-03-16 23:12:27 +03:00
blackhole.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bool.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
bulk_replace.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
case.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
cast.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
check.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
client_xml.test Cleanup tests and results after merge from 4.1 of embedded 2005-04-04 12:43:58 -07:00
comments.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
compare.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
connect.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
consistent_snapshot.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
constraints.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
count_distinct.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
count_distinct2-master.opt
count_distinct2.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
count_distinct3.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
create.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
create_select_tmp.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
csv.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_big5.test Fix for BUG#12075. 2005-08-02 14:27:52 +05:00
ctype_collate.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_cp932.test Review fixes 2005-08-24 19:37:27 +03:00
ctype_cp1250_ch.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_cp1251.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_create.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_eucjpms.test Fixed the ucs2 -> eucjpms conversion bug (bug#11717) 2005-07-18 13:38:56 -07:00
ctype_gbk.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_latin1.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_latin1_de-master.opt Two separate startup arguments for mysqld: 2003-05-21 12:26:35 +05:00
ctype_latin1_de.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ctype_latin2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_many.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ctype_mb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_recoding.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_sjis.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_tis620.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_uca.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ctype_ucs.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ctype_ucs_binlog.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ctype_ujis.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_utf8.test ctype_utf8.result, ctype_utf8.test, item.cc: 2005-08-29 16:49:01 +05:00
date_formats-master.opt Simplified 'wrong xxx name' error messages by introducing 'general' ER_WRONG_NAME error 2003-11-03 14:01:59 +02:00
date_formats.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
default.test Renamed bugs.test to default.test 2005-06-01 17:36:21 +02:00
delayed.test Fix crash in 'INSERT DELAYED' statement that failed due to a 2005-08-01 17:00:03 -07:00
delete.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
derived.test Fix bug #11864 non unique names are allowed in subquery 2005-08-10 17:45:00 +04:00
dirty_close.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
disabled.def disabled.def: 2005-08-25 02:27:52 +02:00
distinct.test Merge ibabaev@bk-internal.mysql.com:/home/bk/mysql-5.0 2005-08-22 09:40:10 -07:00
drop.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
drop_temp_table.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
empty_table.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
endspace.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
errors.test Merge mysql.com:/home/timka/mysql/src/5.0-virgin 2005-08-12 19:27:54 +03:00
exampledb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
explain.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
federated.test Eric's implentation of OPTIMIZE TABLE and REPAIR TABLE, 2005-07-19 03:04:51 +02:00
flush.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
flush_block_commit.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
flush_read_lock_kill-master.opt flush_read_lock_kill-master.opt: 2004-12-13 14:21:59 +01:00
flush_read_lock_kill.test mysqltest improvements, updates after merge + test for 5.0 2005-09-01 17:01:23 +02:00
flush_table.test Fix bug #11934 Two sequential FLUSH TABLES WITH READ LOCK hangs client 2005-08-03 02:01:27 +04:00
foreign_key.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext.test Merge mysql.com:/home/timka/mysql/src/5.0-virgin 2005-08-12 19:27:54 +03:00
fulltext2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_cache.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_distinct.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_left_join.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_multi.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_order_by.test Merge mysql.com:/home/timka/mysql/src/5.0-virgin 2005-08-12 19:27:54 +03:00
fulltext_update.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_var.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_compress.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_concat.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_crypt.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_date_add.test Generate a warning/error when DATE_SUB/ADD() functions calculate a date 2005-08-02 15:28:09 -07:00
func_default.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_des_encrypt.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_encrypt-master.opt added --loose to --des-key-file in *.opt for mysql-test not to fail w/o ssl 2002-05-14 16:36:08 +02:00
func_encrypt.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_encrypt_nossl.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_equal.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_gconcat.test Merge mysql.com:/home/jimw/my/mysql-4.1-clean 2005-08-31 15:24:06 -07:00
func_group.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_if.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_in.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_isnull.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_like.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_math.test Merge mysql.com:/home/jimw/my/mysql-4.1-clean 2005-08-01 17:54:57 -07:00
func_misc.test Fix cases where SLEEP() calls would get optimized away or cached. (Bug #12689) 2005-08-19 15:51:40 -07:00
func_op.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_regexp.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_sapdb.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_set.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_str.test Merge xiphis.org:/usr/home/antony/work2/mysql-4.1 2005-08-11 12:18:53 +01:00
func_system.test func_system.result, func_system.test: 2005-08-08 19:09:54 +05:00
func_test.test func_str.result, null.result: 2005-08-26 22:25:45 -07:00
func_time.test Make SYSDATE() behave as in Oracle: always the current datetime, not the 2005-08-24 15:50:58 -07:00
func_timestamp.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
gcc296.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
gis-rtree.test Merge deer.(none):/home/hf/work/mysql-4.1.clean 2005-08-27 18:10:46 +05:00
gis.test gis.test corrected with Pem's wishes 2005-08-27 20:06:35 +05:00
grant.test Merge mysql.com:/usr/home/bar/mysql-4.1.b10892 2005-08-08 19:04:10 +05:00
grant2.test Merge mysql.com:/home/dlenev/src/mysql-4.1-bg12423 2005-09-01 23:25:29 +04:00
grant3-master.opt - Added new error message. 2005-03-22 15:57:24 +02:00
grant3.test Cleanup tests and results after merge from 4.1 of embedded 2005-04-04 12:43:58 -07:00
grant_cache.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
greedy_optimizer.test Better names for two system variables: 2004-05-20 17:47:43 +03:00
group_by.test Post-merge fixes 2005-08-07 22:10:05 +00:00
group_min_max.test Fix group_min_max.test - myisam may return slightly row count estimate on amd64 2005-08-31 13:23:24 +04:00
handler.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
having.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
heap.test Fixed test that failed on 32 bit systems 2005-08-09 11:21:45 +03:00
heap_auto_increment.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
heap_btree.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
heap_hash.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
help.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
index_merge.test Fix for BUG#10804: allow differences in rows field in EXPLAIN output 2005-06-20 11:05:38 +02:00
index_merge_bdb.test Post-merge fixes. 2004-05-14 16:00:57 +02:00
index_merge_innodb.test Fix for BUG#12720: In QUICK_RANGE_SELECT::reset(), reset in_range so next get_next() call 2005-08-30 03:14:39 +04:00
index_merge_innodb2.test Post-merge fixes. 2004-05-14 16:00:57 +02:00
index_merge_ror.test Fixed failing tests for not 32 bit intel machines 2005-05-16 13:34:23 +03:00
index_merge_ror_cpk.test Fix for BUG#8579 (failing test case): Allow small differences in #rows estimate in test results 2005-02-22 18:30:44 +03:00
information_schema.test Fix for spelling miss and eol junk 2005-09-01 20:02:08 +02:00
information_schema_db.test Fix for bug #10659: information_schema_db fail on Mac OS 2005-05-24 14:35:23 +04:00
information_schema_inno.test addition of "REFERENCED_TABLE_SCHEMA", 2005-05-20 16:39:28 +04:00
init_connect-master.opt Portability fixes found during 5.0 test compilation 2003-12-21 19:39:32 +02:00
init_connect.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
init_file-master.opt - renamed mysql-test/t/init_file.sql to mysql-test/std_data/init_file.dat 2004-02-05 23:36:54 +01:00
init_file.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
innodb-big.test Moved some old test and added a new test to only be run with mysql-test-run --big 2005-04-07 19:24:14 +03:00
innodb-deadlock.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
innodb-lock.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
innodb-master.opt Moved testing of binlog_cache_use/binlog_cache_disk_use statistical variables from 2004-05-19 17:43:50 +04:00
innodb-replace.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
innodb.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
innodb_cache-master.opt Fixed sleep time in mysql-test-run 2001-12-13 02:31:19 +02:00
innodb_cache.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
innodb_handler.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
insert.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
insert_select-binlog.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
insert_select.test Implementation of WL#2486 - 2005-08-12 17:57:19 +03:00
insert_update.test Merge xiphis.org:/usr/home/antony/work2/p2-bug10109.3 2005-08-10 22:17:53 +01:00
join.test WL#2486 - natural and using join according to SQL:2003 2005-08-23 18:08:04 +03:00
join_crash.test Implementation of WL#2486 - 2005-08-12 17:57:19 +03:00
join_nested.test WL#2486 - natural and using join according to SQL:2003 2005-08-23 18:08:04 +03:00
join_outer.test WL#2486 - natural and using join according to SQL:2003 2005-08-23 18:08:04 +03:00
key.test After merge fix. 2005-08-29 21:06:45 +02:00
key_cache-master.opt Support for variables with components 2003-07-06 19:09:57 +03:00
key_cache.test Bug#10473 - Can't set 'key_buffer_size' system variable to ZERO 2005-08-07 20:39:17 +02:00
key_diff.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
key_primary.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
keywords.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
kill.test Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0 2005-09-01 17:15:37 +02:00
limit.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
loaddata.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
lock.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
lock_multi.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
lock_tables_lost_commit-master.opt Fix test case 2003-08-19 16:03:18 +03:00
lock_tables_lost_commit.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
lowercase_table-master.opt Added CREATE TEMPORARY TABLES and LOCK TABLES to db and host tables 2002-09-16 15:55:19 +03:00
lowercase_table.test Merge mysql.com:/home/jimw/my/mysql-4.1-clean 2005-08-31 19:12:16 -07:00
lowercase_table2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
lowercase_table3-master.opt Ensure that one can't from the command line set a variable too small. (Bug #2710) 2004-03-06 10:43:35 +02:00
lowercase_table3.test Make lowercase_table3 get skipped on Windows, as intended. (Bug #11568) 2005-08-02 15:58:41 -07:00
lowercase_table_grant-master.opt Always lowercase database names from 'host' and 'db' grant tables when they 2005-02-15 13:36:46 -08:00
lowercase_table_grant.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
lowercase_table_qcache-master.opt fixed comparation of tables/database names with --lower_case_table_names (BUG#2880) 2004-02-20 22:44:54 +02:00
lowercase_table_qcache.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
lowercase_view-master.opt ixed table and db name of fields incase of lower_case_table_names (BUG#5154) 2004-09-07 19:58:02 +03:00
lowercase_view.test fixed mechanism of detection selection from table wich we update 2005-03-28 15:13:31 +03:00
merge.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
metadata.test Fix mysql_info() returning bad data in the results of a multi-statement 2005-08-10 18:32:17 -07:00
mix_innodb_myisam_binlog-master.opt Fix for BUG##5714 "Insert into MyISAM table and select ... for update]": 2004-11-04 19:19:23 +01:00
mix_innodb_myisam_binlog.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
multi_statement-master.opt Log each slow query in a multi-statement query to the slow query log. 2005-02-17 11:48:44 -08:00
multi_statement.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
multi_update-master.opt A fix for a bug in multi-table updates which was always caused 2003-04-02 17:05:34 +03:00
multi_update.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
myisam-blob-master.opt Fixed table crash bug when updating row > 16M (Bug #2159) 2004-01-15 21:39:56 +01:00
myisam-blob.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
myisam.test Merge mysql.com:/home/mydev/mysql-4.1-4100 2005-08-29 18:18:30 +02:00
mysql.test BUG#9998 MySQL client hangs on "USE database" 2005-06-03 15:29:05 +02:00
mysql_client_test.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
mysql_delimiter.sql Fix 'source' command in mysql client to handle delimiter command 2005-08-09 12:17:28 -07:00
mysql_delimiter_source.sql Fix 'source' command in mysql client to handle delimiter command 2005-08-09 12:17:28 -07:00
mysql_protocols.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
mysqlbinlog-master.opt Test for mysqlbinlog 2003-09-24 23:25:58 +04:00
mysqlbinlog.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
mysqlbinlog2.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
mysqldump.test Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-5.0 2005-07-29 23:43:07 +03:00
mysqlshow.test Cleanup tests and results after merge from 4.1 of embedded 2005-04-04 12:43:58 -07:00
mysqltest.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-02 11:19:46 +02:00
ndb_alter_table.test Merge eel.(none):/home/jonas/src/mysql-5.0 2005-08-18 14:28:13 +02:00
ndb_autodiscover.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_autodiscover2-master.opt Added test(s) for auto discover of frm file 2004-05-17 09:53:13 +02:00
ndb_autodiscover2.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
ndb_basic.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_bitfield.test Disabled test for embedded 2005-04-21 11:11:37 +02:00
ndb_blob.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_cache.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_cache2.test Disabled test for embedded 2005-04-21 11:11:37 +02:00
ndb_cache_multi.test Disabled test for embedded 2005-04-21 11:11:37 +02:00
ndb_cache_multi2.test Disabled test for embedded 2005-04-21 11:11:37 +02:00
ndb_charset.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_condition_pushdown.test Fixed handling of condition pushdown to storage engine of NO BETWEEN and NOT IN 2005-06-01 11:56:47 +02:00
ndb_config.test ndb - 2005-08-22 11:34:33 +02:00
ndb_database.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_grant.later Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_index.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_index_ordered.test ndb - fix ha_ndb crash on ordered index on nullable varchar 2005-09-01 14:12:48 +02:00
ndb_index_unique.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_insert.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_limit.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_lock.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_minmax.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_multi.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_read_multi_range.test Disabled test for embedded 2005-04-21 11:11:37 +02:00
ndb_replace.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_restore.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_subquery.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_transaction.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_truncate.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_types.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_update.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
negation_elimination.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
not_embedded_server.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
null.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
null_key.test WL#2486 - natural and using join according to SQL:2003 2005-08-23 18:08:04 +03:00
odbc.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
olap.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
openssl_1.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
order_by.test WL#2486 - natural and using join according to SQL:2003 2005-08-23 18:08:04 +03:00
order_fill_sortbuf-master.opt
order_fill_sortbuf.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
outfile.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
overflow.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
packet.test Skip two tests that fail on Windows that just reflect limitations of 2005-08-03 17:38:55 -07:00
preload.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ps_1general.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ps_2myisam.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_3innodb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_4heap.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ps_5merge.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ps_6bdb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_7ndb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_10nestset.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_11bugs.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_grant.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
query_cache.test Manual merge 2005-08-07 21:30:46 +00:00
query_cache_merge.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
query_cache_notembedded.test query_cache_notembedded.test, query_cache_notembedded.result: 2005-08-11 13:07:08 +03:00
raid.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
range.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rename.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
repair.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
replace.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rollback.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
row.test stop on NULL comparison only if it is allowed (BUG#12509) 2005-08-18 12:07:14 +03:00
rowid_order_bdb.test This is first cset for WL#1394 "Optimize index merge when all involved index ranges include only values with equal keys" 2004-05-13 01:38:40 +04:00
rowid_order_innodb.test This is first cset for WL#1394 "Optimize index merge when all involved index ranges include only values with equal keys" 2004-05-13 01:38:40 +04:00
rpl000001-slave.opt Ensure that innodb is created for the first replication test as the slave-timeout is lower for future tests and this failed on some slower machines 2003-12-02 13:32:05 +02:00
rpl000001.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl000002.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000004.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000005.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000006.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000008-slave.opt Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000008.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000009-slave.opt Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000009.test Fix incorrect spellings of "dropped" in source and tests. (Bug #12828) 2005-08-30 12:24:37 -07:00
rpl000010-slave.opt This is the final commit for Worklog tasks: 2003-12-19 22:40:23 +01:00
rpl000010.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000011.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000012.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000013-slave.opt
rpl000013.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000015-slave.sh Fix that mysqladmin shutdown can be interrupted with ^C 2001-11-03 15:18:09 +02:00
rpl000015.slave-mi merge with 3.23 to get corrected error message files and rename of files in mysql-test 2003-02-26 00:22:35 +02:00
rpl000015.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl000017-slave.opt
rpl000017-slave.sh SCRUM: Main change for Secure connection handling. Still needs some more coding. Commit 2002-11-24 17:07:53 +03:00
rpl000017.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl000018-master.opt
rpl000018-slave.opt
rpl000018.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_alter.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_auto_increment-master.opt Added options --auto-increment-increment and --auto-increment-offset. 2004-09-15 22:10:31 +03:00
rpl_auto_increment.test test made independend of server builtin features 2004-11-21 16:42:54 +02:00
rpl_chain_temp_table.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_change_master.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_charset.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_commit_after_flush.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_create_database-master.opt Bug#6391 (binlog-do-db rules ignored) 2004-12-03 12:13:51 +01:00
rpl_create_database-slave.opt Bug#6391 (binlog-do-db rules ignored) 2004-12-03 12:13:51 +01:00
rpl_create_database.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_ddl.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_deadlock-slave.opt Fix for BUG#8325 "Deadlock in replication thread stops replication": 2005-03-02 11:29:48 +01:00
rpl_deadlock.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_delete_all.test fixed test after merge 2005-08-19 11:38:14 +03:00
rpl_do_grant.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_drop.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_drop_db.test Add back changes lost in merge 2005-08-25 10:19:06 +03:00
rpl_drop_temp-slave.opt 1) undoing my fix for BUG#8055 "Trouble with replication from temporary tables and ignores" 2005-02-14 23:47:17 +01:00
rpl_drop_temp.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_EE_error.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_empty_master_crash.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_error_ignored_table-slave.opt Fix for BUG#2983 "If statement was killed on master, slave errors despite replicate-wild-ignore-t" 2004-03-11 17:38:19 +01:00
rpl_error_ignored_table.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_failed_optimize-master.opt Simpler arena swapping code 2004-11-08 01:13:54 +02:00
rpl_failed_optimize.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_failsafe.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_flush_log_loop-master.opt Fix MySQL Test so it will not depend on current host in log file naming. 2002-09-15 02:17:20 +04:00
rpl_flush_log_loop-master.sh Repeatable test case in mysql-test format for flush-logs problem with 2002-09-05 01:36:49 +04:00
rpl_flush_log_loop-slave.opt Fix MySQL Test so it will not depend on current host in log file naming. 2002-09-15 02:17:20 +04:00
rpl_flush_log_loop-slave.sh Repeatable test case in mysql-test format for flush-logs problem with 2002-09-05 01:36:49 +04:00
rpl_flush_log_loop.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_flush_tables.test Manual merge 2005-08-07 21:30:46 +00:00
rpl_free_items-slave.opt test suite for bug Bug#3969 (commited separetely because it took too long time to parse it on 3.23) 2004-06-11 16:25:18 +03:00
rpl_free_items.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_get_lock.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_heap.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_ignore_grant-slave.opt Fix so that SET PASSWORD is not replicated by the slave if running with 2003-08-02 23:46:26 +02:00
rpl_ignore_grant.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_init_slave-slave.opt Fixed test for 'init_slave' variable 2003-12-08 12:10:30 +04:00
rpl_init_slave.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_innodb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_insert_id-slave.opt My changes to test rpl_insert_id in 4.0 about replication of foreign_key_checks 2003-07-26 23:14:09 +02:00
rpl_insert_id.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_insert_ignore-slave.opt A .test for BUG#6287 "Slave skips auto_increment values in Replication with InnoDB" 2004-12-16 23:14:41 +01:00
rpl_insert_ignore.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_insert_select.test The earlier commit for BUG#10456 did not add the test file 2005-08-02 15:15:28 -06:00
rpl_loaddata.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_loaddata_rule_m-master.opt First commit for fixing BUG#1100 2003-08-20 23:24:45 +02:00
rpl_loaddata_rule_m.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_loaddata_rule_s-slave.opt First commit for fixing BUG#1100 2003-08-20 23:24:45 +02:00
rpl_loaddata_rule_s.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_loaddatalocal.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_log-master.opt Guard against compiling without -fno-exceptions 2003-01-14 11:27:26 +02:00
rpl_log-slave.opt Result updates after Dmitri's and my changes to logging with --log-slave-updates. 2003-08-21 00:23:39 +02:00
rpl_log.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_log_pos.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_many_optimize.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_master_pos_wait.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_max_relay_size.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_misc_functions-slave.sh Proper replication of CONNECTION_ID() and 4.1 PASSWORD() (bugs 177 and 344), 2003-05-13 22:50:28 +02:00
rpl_misc_functions.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_multi_delete-slave.opt Fix for BUG#2527 "Multi-Table Delete - Not Replication use replicate-wild-do-table" 2004-01-29 19:22:29 +01:00
rpl_multi_delete.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_multi_delete2-slave.opt Fix for BUG#3461 "multi-table DELETE replicated despite replicate-wild-ignore-table": 2004-04-13 22:40:16 +02:00
rpl_multi_delete2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_multi_query.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_multi_update.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_multi_update2-slave.opt Bug#7011 2005-01-30 10:24:03 +00:00
rpl_multi_update2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_multi_update3.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_mystery22.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_openssl.test Fix which include file is used to decide whether to skip rpl_openssl, the 2005-08-11 17:14:11 -07:00
rpl_optimize.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_ps.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_redirect.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_relayrotate-slave.opt This is the final commit for Worklog tasks: 2003-12-19 22:40:23 +01:00
rpl_relayrotate.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_relayspace-slave.opt Changed prototype of killed_ptr() to make it more portable 2004-05-26 19:12:49 +03:00
rpl_relayspace.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_replicate_do-slave.opt Small improvement to alloc_root 2002-11-16 20:19:10 +02:00
rpl_replicate_do.test Merge mysql.com:/users/lthalmann/bk/mysql-4.1 2005-09-02 11:01:00 +02:00
rpl_reset_slave.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_rewrite_db-slave.opt BUG#6353 V2: 2004-11-15 17:03:54 +01:00
rpl_rewrite_db.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_rotate_logs-master.opt WL#912 (more user control on relay logs): 2003-07-06 17:59:54 +02:00
rpl_rotate_logs-slave.sh merge with 3.23 2002-08-24 02:10:49 +03:00
rpl_rotate_logs.slave-mi change 'slave-master-info.opt' to .slave-mi to avoid problems with long filenames on some OS 2003-02-26 00:04:13 +02:00
rpl_rotate_logs.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_server_id1.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_server_id2-slave.opt A new option --replicate-same-server-id to force a slave to execute queries originating from itself 2004-04-28 18:24:46 +02:00
rpl_server_id2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_session_var.test Invalid DEFAULT values for CREATE TABLE now generates errors. (Bug #5902) 2005-04-01 15:04:50 +03:00
rpl_set_charset.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_skip_error-slave.opt slave-skip-errors 2001-12-12 18:55:33 -07:00
rpl_skip_error.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_slave_status.test Fix missing command terminator 2005-09-01 20:49:06 +02:00
rpl_sp-master.opt Approximative fixes for BUG#2610,2611,9100 i.e. WL#2146 binlogging/replication of routines (stored procs and functions). 2005-05-05 14:20:53 +02:00
rpl_sp-slave.opt Approximative fixes for BUG#2610,2611,9100 i.e. WL#2146 binlogging/replication of routines (stored procs and functions). 2005-05-05 14:20:53 +02:00
rpl_sp.test Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0 2005-09-01 17:15:37 +02:00
rpl_sp_effects-master.opt Fix for BUG#12335 (SP replication) : New binlogging strategy for stored PROCEDUREs/FUNCTIONs. 2005-08-25 17:34:34 +04:00
rpl_sp_effects-slave.opt Fix for BUG#12335 (SP replication) : New binlogging strategy for stored PROCEDUREs/FUNCTIONs. 2005-08-25 17:34:34 +04:00
rpl_sp_effects.test BUG#12335: merging: temporarily removed a test case that demonstrates wrong behaviour and does it in non-deterministic way. 2005-08-25 18:13:56 +04:00
rpl_sporadic_master-master.opt
rpl_sporadic_master.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_start_stop_slave.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_temporary.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_timezone-master.opt WL#1264 "Per-thread time zone support infrastructure". 2004-06-18 10:11:31 +04:00
rpl_timezone-slave.opt Last part of WL#1062: better replication of timezones: no more use 2005-03-22 00:26:12 +01:00
rpl_timezone.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_trigger.test Don't clear warnings for functions or triggers 2005-08-15 20:08:58 +03:00
rpl_until.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_user_variables.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_variables-master.opt Add support for slave_compressed_protocol, slave_load_tmpdir, and 2005-05-07 06:55:47 -07:00
rpl_variables.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_view.test added replication of VIEW DDL commands (BUG#4838) 2005-01-17 01:18:08 +02:00
schema.test Update to add keyword "SCHEMA" and "SCHEMAS". Small test case was added too. 2004-10-01 12:39:11 -07:00
select.test fix for bug #12841 2005-08-29 15:45:03 +02:00
select_found.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
select_safe.test Fix bug #11864 non unique names are allowed in subquery 2005-08-10 17:45:00 +04:00
show_check.test fix for bug #12591 (SHOW TABLES FROM dbname produces wrong error message) 2005-08-17 17:51:10 +02:00
skip_grants-master.opt BUG#9993 2 unexpected warnings when dropping a routine and --skip-grant-tables 2005-05-26 16:44:46 +02:00
skip_grants.test BUG#9993 2 unexpected warnings when dropping a routine and --skip-grant-tables 2005-05-26 16:44:46 +02:00
skip_name_resolve-master.opt Allow hostnames that are IP addresses with a netmask even when 2005-02-14 20:33:14 -08:00
skip_name_resolve.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
sp-big.test Increase allowed size of stored procedure bodies to 4GB, and 2005-07-26 18:08:49 -07:00
sp-dynamic.test Implement WL#2661 "Prepared Statements: Dynamic SQL in Stored Procedures". 2005-09-03 03:13:18 +04:00
sp-error.test Implement WL#2661 "Prepared Statements: Dynamic SQL in Stored Procedures". 2005-09-03 03:13:18 +04:00
sp-goto.test Disabled the GOTO feature. (It's non-standard and undocumented.) 2005-07-01 15:25:51 +02:00
sp-prelocking.test Prelocking-free SPs, post-review fixes: 2005-08-03 03:37:32 +00:00
sp-security.test Fixes during review of new pushed code 2005-08-20 11:00:00 +03:00
sp-threads.test Merge mysql.com:/home/psergey/mysql-5.0-bug12228-r4 2005-08-10 21:17:52 +00:00
sp.test Fix for spelling miss and eol junk 2005-09-01 20:02:08 +02:00
sp_trans.test Merge mysql.com:/home/bkroot/mysql-5.0 into mysql.com:/home/bk/mysql-5.0 2005-06-07 16:48:38 +02:00
sql_mode.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
status.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
strict.test Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0 2005-09-01 17:15:37 +02:00
subselect.test WL#2486 - natural and using join according to SQL:2003 2005-08-23 18:08:04 +03:00
subselect2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
subselect_gis.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
subselect_innodb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
sum_distinct-big.test Moved some old test and added a new test to only be run with mysql-test-run --big 2005-04-07 19:24:14 +03:00
sum_distinct.test Moved some old test and added a new test to only be run with mysql-test-run --big 2005-04-07 19:24:14 +03:00
symlink.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
synchronization.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
system_mysql_db.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
system_mysql_db_fix-master.opt Portability fixes 2004-04-30 00:14:56 +03:00
system_mysql_db_fix.test Merge mysql.com:/home/jimw/my/mysql-4.1-clean 2005-08-31 15:24:06 -07:00
system_mysql_db_refs.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
tablelock.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
temp_table-master.opt Make sure that the filename for temporary tables is built with fn_format() 2005-03-01 19:05:48 -08:00
temp_table.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
timezone-master.opt Fixed problem with mysql prompt when server disconnect. (Bug 356) 2003-05-27 16:40:14 +03:00
timezone.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
timezone2.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
timezone3-master.opt Fix for bug #6387 "Queried timestamp values do not match the inserted 2004-11-03 17:59:03 +00:00
timezone3.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
timezone_grant.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
trigger.test Implement WL#2661 "Prepared Statements: Dynamic SQL in Stored Procedures". 2005-09-03 03:13:18 +04:00
truncate.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_bit.test Merge mysql.com:/home/psergey/mysql-5.0-bug12228-r4 2005-08-10 21:17:52 +00:00
type_bit_innodb.test Fix error code in some tests because of merge 2005-08-08 11:42:09 -07:00
type_blob.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
type_date.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_datetime.test Review of new pushed code 2005-08-09 00:13:49 +03:00
type_decimal.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
type_enum.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_float.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
type_nchar.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_newdecimal.test Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0 2005-09-01 17:15:37 +02:00
type_ranges.test WL#2486 - natural and using join according to SQL:2003 2005-08-23 18:08:04 +03:00
type_set.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_time.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_timestamp.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
type_uint.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_varchar.test Fix partial keys when converting VARCHAR to TEXT. (Bug #10543) 2005-05-25 18:11:47 -07:00
type_year.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
union-master.opt QUERY_NO_GOOD_INDEX_USED and QUERY_NO_INDEX_USED moved from thd->lex.select_lex->options to thd->server_status 2003-12-06 23:21:09 +01:00
union.test Implementation of WL#2486 - 2005-08-12 17:57:19 +03:00
update.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
user_limits.test Cleanup tests and results after merge from 4.1 of embedded 2005-04-04 12:43:58 -07:00
user_var-binlog.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
user_var.test Merge mysql.com:/home/jimw/my/mysql-4.1-clean 2005-08-01 17:54:57 -07:00
varbinary.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
variables-master.opt Give warning if MySQL doesn't honor given storage engine 2003-05-13 11:15:11 +03:00
variables.test Merge mysql.com:/usr/home/ram/work/4.1.b9613 2005-08-31 10:25:00 +05:00
view.test Fix for spelling miss and eol junk 2005-09-01 20:02:08 +02:00
view_grant.test added processing of view grants to table grants (BUG#9795) 2005-07-05 13:36:36 +03:00
view_query_cache.test fixed QC invaluidation and processing with view (BUG#8050) (BUG#8054) 2005-01-27 14:21:37 +02:00
warnings-master.opt Give warning if MySQL doesn't honor given storage engine 2003-05-13 11:15:11 +03:00
warnings.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
windows.test Fix handling of filenames that start the same as reserved filenames 2005-08-31 18:32:15 -07:00
xa.test after merge 2005-08-13 08:42:35 +02:00