mariadb/mysql-test/r
unknown 8d4f74be2d - final fixes for bug#16431 (Events: An event which alters itself disappears)
- fix for bug#16423 (Events: SHOW CREATE EVENT doesn't work)
- this Changeset commits makes CREATE/UPDATE/DELETE EVENT real DDL statements
  by committing the currently open transaction before they are executed.
- this Changeset also fixes a trailing space problem since the very early days
  of the internal cron
- adds sophisticated checking of whether mysql.event was tampered accidentally
  or with purpose by an user.
- adds a lot of inline function documentation - documents everything left
  uncodumented
- INTERVAL_XXXX to XXX in I_S.EVENTS.INTERVAL_FIELD

WL#1034 (Internal CRON)


mysql-test/r/events.result:
  update result
mysql-test/t/events.test:
  add test cases for SHOW CREATE EVENT
  add test cases where the structure of mysql.event is changed and error reporting in this case
sql/event.cc:
  - do a lot more checking on mysql.event whether it's valid
    introduced generic function table_check_intact() which can be used also
    for checking whether a system table (mysql.*) has been tampered by user
    and report an error in this case. The checking is quite strict, thus
    maybe some mechanism can be added later that loosens this like some
    session variable, for instance, i_am_aware_that_i_can_damage_my_data
    so the table will be opened nevertheless we think that it's not valid.
  - add evex_show_create_event(THD *thd, sp_name *spn, LEX_STRING definer)
  - document a loooot. not a single function left undocumented.
sql/event.h:
  - add evex_show_create_event(THD *thd, sp_name *spn, LEX_STRING definer)
  - change get_show_create_event() to get_create_event()
  - add TABLE_FIELD_W_TYPE used by table_check_intact()
  - add event_timed::sql_mode so it can be used by show create event. currently
    always 0, will be fixed by a patch for another bug. At least makes the code
    of show create event complete.
sql/event_executor.cc:
  - add evex_check_system_tables() that checks on boot and event
    main thread startup that mysql.db and mysql.user tables are correct.
  - document everything!
sql/event_priv.h:
  remove a line
sql/event_timed.cc:
  - implement SHOW CREATE EVENT
  - document undocumented functions!
sql/share/errmsg.txt:
  - fix an error message and add two new
sql/sql_acl.cc:
  - add mysql.db table definition to use by table_check_intact()
  - exchange some of the positions by numbers from mysql.db to enum names (see sql_acl.h)
sql/sql_acl.h:
  - define the structure of mysql.db table
sql/sql_parse.cc:
  - handle SQLCOM_SHOW_CREATE_EVENT
  - end the current transaction becase CREATE/UPDATE/DELETE EVENT is a DDL
    statement
sql/sql_show.cc:
  - remove interval_type_to_name
  - use common function event_reconstruct_interval_expression()
    that reconstructs the expression given at create/alter, to some
    extent - interval of 2:62 MINUTE_SECOND will be reconstructed as
    interval of 3:02 MINUTE_SECOND!
sql/sql_yacc.yy:
  init the definer of event_timed also when doing SHOW CREATE EVENT
  because it's needed for checking into mysql.event
sql/table.cc:
  - remove stale code. only mysql.event should be a 'system_table'
  - add table_check_intact() to check the consistency of a table.
    mostly usable with mysql.xxx tables.
sql/table.h:
  - export TABLE_FIELD_W_TYPE and table_check_intact() which are used for 
    checking the structure of a table. mostly usable for mysql.xxx tables.
2006-02-14 16:20:48 +01:00
..
alias.result
alter_table.result WL#1324 table name to file name encoding 2005-12-31 09:01:26 +04:00
analyse.result Additional fix for bug #14445 (analyse.test fails) 2005-11-01 16:14:26 +04:00
analyze.result Merge svlasenko@bk-internal.mysql.com:/home/bk/mysql-5.0 2005-12-01 20:29:48 +03:00
ansi.result
archive.result New support for ignoring blobs during scans. We now seek past them if we determine that they are of no use to us. This is a big save in tables with blobs. Far less memory overhead and the seek is quite a bit faster. 2006-01-12 20:32:40 -08:00
archive_bitfield.result Added bitfield support and a test for it. 2006-01-11 21:16:51 -08:00
archive_gis.result Change in gis test to allow NDB to be able to call generic tests. Fix for Archive so that ALTER TABLE doesn't issue a warning. Also added test case for alter table. 2005-10-26 13:55:08 -07:00
auto_increment.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
backup.result backup.result, backup.test: 2005-12-30 14:55:56 +04:00
bdb-alter-table-1.result
bdb-alter-table-2.result
bdb-crash.result Use transaction-aware DB->stat() call when doing 'ANALYZE TABLE' on 2005-11-07 17:14:35 -08:00
bdb-deadlock.result
bdb.result Merge mysql.com:/home/jimw/my/mysql-5.0-clean 2006-01-06 10:42:58 -08:00
bdb_cache.result
bdb_gis.result Change in gis test to allow NDB to be able to call generic tests. Fix for Archive so that ALTER TABLE doesn't issue a warning. Also added test case for alter table. 2005-10-26 13:55:08 -07:00
bench_count_distinct.result
big_test.require
bigint.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
binary.result
binlog_row_binlog.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
binlog_row_blackhole.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
binlog_row_ctype_cp932.result Fix for the test failure of binlog_row_ctype_cp932. Note that since we pushed row-based replication, 2006-01-23 22:17:12 +01:00
binlog_row_ctype_ucs.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
binlog_row_drop_tmp_tbl.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
binlog_row_innodb_stat.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
binlog_row_insert_select.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
binlog_row_mix_innodb_myisam.result Bug#15923 (Test ps_7ndb cause master crash): 2006-01-05 10:52:58 +01:00
binlog_stm_binlog.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
binlog_stm_blackhole.result Fix result after merge 2006-01-06 15:16:44 -08:00
binlog_stm_ctype_cp932.result Additional fix for wl#2506 2006-01-11 15:04:18 +04:00
binlog_stm_ctype_ucs.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
binlog_stm_drop_tmp_tbl.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
binlog_stm_innodb_stat.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
binlog_stm_insert_select.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
binlog_stm_mix_innodb_myisam.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
bool.result
bulk_replace.result
case.result
cast.result cast.result: 2005-11-21 21:11:28 +04:00
check.result
check_var_limit.require
client_xml.result
comments.result
compare.result
compress.result
connect.result WL1019: complete patch. Reapplied patch to the clean 2006-01-19 05:56:06 +03:00
consistent_snapshot.result
constraints.result
count_distinct.result
count_distinct2.result
count_distinct3.result
create.result Merge 2006-01-28 10:37:22 +01:00
create_select_tmp.result
csv.result WL1019: complete patch. Reapplied patch to the clean 2006-01-19 05:56:06 +03:00
ctype_big5.result
ctype_collate.result
ctype_cp932_binlog_row.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
ctype_cp932_binlog_stm.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
ctype_cp932_notembedded.result Embedded-server related tests fixes 2006-01-19 13:25:12 +04:00
ctype_cp1250_ch.result Bug#13347: empty result from query with like and cp1250 charset 2005-10-25 14:49:04 +05:00
ctype_cp1251.result
ctype_create.result
ctype_eucjpms.result
ctype_euckr.result Bug#15377 Valid multibyte sequences are truncated on INSERT 2005-12-09 16:37:58 +04:00
ctype_gb2312.result Bug#15377 Valid multibyte sequences are truncated on INSERT 2005-12-09 16:37:58 +04:00
ctype_gbk.result
ctype_latin1.result Merge mysql.com:/usr/home/bar/mysql-4.1.b13145 2005-10-14 13:57:38 +05:00
ctype_latin1_de.result
ctype_latin2.result
ctype_many.result
ctype_mb.result
ctype_recoding.result Merge mysql.com:/usr/home/bar/mysql-4.1.b10446 2005-11-29 09:25:51 +04:00
ctype_sjis.result
ctype_tis620.result
ctype_uca.result ctype_uca.result, ctype_uca.test: 2005-12-23 14:20:00 +04:00
ctype_ucs.result Merge moonbone.local:/work/14583-bug-5.0-mysql 2005-12-28 19:47:56 +03:00
ctype_ujis.result Patch for WL#2894: Make stored routine variables work 2005-12-07 17:01:17 +03:00
ctype_utf8.result ctype_utf8.result: 2006-01-12 13:08:49 +04:00
date_formats.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
default.result
delayed.result
delete.result
derived.result
dirty_close.result
distinct.result
drop.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
empty_table.result
endspace.result
errors.result
events.result - final fixes for bug#16431 (Events: An event which alters itself disappears) 2006-02-14 16:20:48 +01:00
exampledb.result
explain.result
federated.result Don't use PATH_MAX for FN_REFLEN as this uses too much stack space 2005-11-24 02:36:28 +02:00
federated_archive.result
federated_bug_13118.result
federated_transactions.result Re-applying the work initially done by Brian, and since worked upon by me previously in several separate patches to the 5.1 parent but never pushed. 2005-11-09 05:53:34 -08:00
flush.result
flush_block_commit.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
flush_read_lock_kill.result
flush_table.result Table definition cache, part 2 2005-11-23 22:45:02 +02:00
foreign_key.result
fulltext.result BUG#16722 - Fulltext: implicit limit for query word number (depends on length of the query) 2006-01-26 15:12:59 +04:00
fulltext2.result BUG#11336 - fulltext index corruption after repair_by_sort and mi_delete 2005-12-18 13:30:01 +01:00
fulltext_cache.result
fulltext_distinct.result
fulltext_left_join.result
fulltext_multi.result
fulltext_order_by.result
fulltext_update.result
fulltext_var.result
func_compress.result
func_concat.result
func_crypt.result
func_date_add.result
func_default.result
func_des_encrypt.result
func_encrypt.result
func_encrypt_nossl.result
func_equal.result Merge mysql.com:/home/jimw/my/mysql-4.1-12612 2005-12-01 12:07:25 -08:00
func_gconcat.result Merge rurik.mysql.com:/home/igor/mysql-5.0 2005-11-22 23:00:57 -08:00
func_group.result Fixed bug #15633: Evaluation of Item_equal for non-const table caused wrong 2006-01-11 22:49:43 +03:00
func_if.result
func_in.result
func_isnull.result
func_like.result
func_math.result Merge mysql.com:/home/jimw/my/mysql-4.1-clean 2005-10-27 18:46:00 -07:00
func_misc.result BUG#9535 Warning for "create table t as select uuid();" 2005-12-07 15:45:31 +01:00
func_op.result
func_regexp.result
func_sapdb.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
func_set.result
func_str.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
func_system.result
func_test.result
func_time.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
func_timestamp.result
gcc296.result
gis-rtree.result
gis.result gis.test fixed 2005-11-01 11:43:34 +04:00
grant.result WL #1034 (Internal CRON) 2006-01-10 21:02:19 +01:00
grant2.result Bug #15775 "drop user" command does not refresh acl_check_hosts 2005-12-28 14:43:50 +01:00
grant3.result
grant_cache.result
greedy_optimizer.result
group_by.result
group_min_max.result Merge mysql.com:/home/timka/mysql/src/5.0-virgin 2005-12-01 09:26:17 +02:00
handler.result Review fixes of new pushed code 2006-01-06 00:47:49 +02:00
have_archive.require
have_bdb.require
have_big5.require
have_binlog_format_row.require WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
have_binlog_format_statement.require WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
have_blackhole.require
have_compress.require
have_cp932.require
have_cp1250_ch.require
have_crypt.require
have_csv.require
have_debug.require
have_eucjpms.require
have_euckr.require Bug#15377 Valid multibyte sequences are truncated on INSERT 2005-12-09 16:37:58 +04:00
have_exampledb.require
have_federated_db.require
have_gb2312.require Bug#15377 Valid multibyte sequences are truncated on INSERT 2005-12-09 16:37:58 +04:00
have_gbk.require
have_geometry.require
have_innodb.require
have_met_timezone.require
have_moscow_leap_timezone.require
have_ndb.require
have_ndb_extra.require wl2325 wl2324 2006-01-12 19:51:02 +01:00
have_openssl.require
have_outfile.require
have_partition.require Bug# 16718 partitioning support status variable has incorrect name 2006-01-23 08:42:32 -06:00
have_query_cache.require
have_raid.require
have_row_based.require WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
have_sjis.require
have_symlink.require
have_tis620.require
have_ucs2.require
have_ujis.require
having.result Merge rurik.mysql.com:/home/igor/dev/mysql-4.1-0 2006-01-07 23:10:08 -08:00
heap.result
heap_auto_increment.result
heap_btree.result
heap_hash.result
help.result
im_daemon_life_cycle.result
im_life_cycle.result fix for im_life_cycle test: replace im instance port number with a constant string. 2005-10-18 00:48:34 +04:00
im_options_set.result
im_options_unset.result
im_utils.result WL1019: complete patch. Reapplied patch to the clean 2006-01-19 05:56:06 +03:00
index_merge.result BUG#16166, "Can't use index_merge with FORCE INDEX": adjust the heurstics check to take into 2006-01-12 10:48:27 +03:00
index_merge_bdb.result
index_merge_innodb.result
index_merge_innodb2.result
index_merge_ror.result
index_merge_ror_cpk.result
information_schema.result fix for bug#16642 (Events: No INFORMATION_SCHEMA.EVENTS table) 2006-01-30 13:15:23 +01:00
information_schema_db.result fix for bug#16642 (Events: No INFORMATION_SCHEMA.EVENTS table) 2006-01-30 13:15:23 +01:00
information_schema_inno.result
information_schema_part.result WL#2506: Information Schema tables for PARTITIONing 2006-01-10 19:44:04 +04:00
init_connect.result
init_file.result WL#2930 2005-12-06 21:28:13 +01:00
innodb-big.result
innodb-deadlock.result
innodb-lock.result
innodb-replace.result
innodb.result Embedded-server related tests fixes 2006-01-19 13:25:12 +04:00
innodb_cache.result
innodb_concurrent.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
innodb_gis.result Change in gis test to allow NDB to be able to call generic tests. Fix for Archive so that ALTER TABLE doesn't issue a warning. Also added test case for alter table. 2005-10-26 13:55:08 -07:00
innodb_handler.result
innodb_notembedded.result Embedded-server related tests fixes 2006-01-19 13:25:12 +04:00
insert.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
insert_select.result Fix for bug#11491 Misleading error message if not NULL column set to NULL, 2005-12-01 15:30:11 +04:00
insert_update.result
is_debug_build.require Post-review fixes, mainly fixing all print() methods for sp_instr* classes. 2005-11-18 16:30:27 +01:00
isam.result
join.result WL#2486 - natural/using join according to SQL:2003 2005-11-30 19:13:29 +02:00
join_crash.result
join_nested.result BUG#16393: Let the 'ref' optimizer use ON condition of nested join to construct 2006-01-13 23:55:30 +03:00
join_outer.result
key.result WL#1563 - Modify MySQL to support fast CREATE/DROP INDEX 2006-01-12 10:05:07 +01:00
key_cache.result
key_diff.result
key_primary.result
keywords.result
kill.result Review fixes of new pushed code 2006-01-06 00:47:49 +02:00
limit.result
loaddata.result loaddata.result, loaddata.test: 2006-01-18 12:55:38 +04:00
lock.result
lock_multi.result
lock_tables_lost_commit.result
log_tables.result WL1019: complete patch. Reapplied patch to the clean 2006-01-19 05:56:06 +03:00
lowercase0.require
lowercase2.require
lowercase_table.result
lowercase_table2.result
lowercase_table3.result
lowercase_table_grant.result WL #1034 (Internal CRON) pre-push updates 2006-01-10 19:16:58 +01:00
lowercase_table_qcache.result
lowercase_view.result
merge.result BUG#5390 - problems with merge tables 2005-12-22 13:48:00 +01:00
metadata.result
multi_statement.result
multi_update.result
myisam-blob.result
myisam.result Merge mysql.com:/home/mydev/mysql-4.1-4100 2005-11-16 10:23:42 +01:00
mysql.result
mysql_client_test.result WL#2930 2005-12-06 21:28:13 +01:00
mysql_protocols.result
mysqlbinlog.result
mysqlbinlog2.result
mysqlbinlog_base64.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
mysqlcheck.result WL1019: complete patch. Reapplied patch to the clean 2006-01-19 05:56:06 +03:00
mysqldump-max.result select.result, mysqldump-max.result: 2005-10-13 21:28:44 +05:00
mysqldump.result Merge mysql.com:/home/alik/MySQL/devel/5.0-bug15103 2006-01-13 19:46:39 +03:00
mysqlshow.result Review fixes of new pushed code 2006-01-06 00:47:49 +02:00
mysqlslap.result Fixed bug #16167 2006-01-12 12:27:25 -08:00
mysqltest.result Fixes about the embedded-server in 5.1 2006-01-23 11:58:14 +04:00
ndb_alter_table.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
ndb_alter_table_row.result Disabled fast/drop index temporarily 2006-01-18 12:44:08 +01:00
ndb_alter_table_stm.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
ndb_autodiscover.result WL #2604: Partition Management 2006-01-17 08:40:00 +01:00
ndb_autodiscover2.result Ndb handler cleanup: 2005-11-06 00:20:37 +01:00
ndb_basic.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
ndb_binlog_basic.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
ndb_binlog_multi.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
ndb_bitfield.result WL #2604: Partition Management 2006-01-17 08:40:00 +01:00
ndb_blob.result
ndb_cache.result
ndb_cache2.result
ndb_cache_multi.result
ndb_cache_multi2.result
ndb_charset.result ndb - bug#14007 5.1 (merge 5.0->5.1) 2005-11-20 11:15:13 +01:00
ndb_condition_pushdown.result Merge mysql.com:/home/my/mysql-5.0 2005-11-05 01:32:55 +02:00
ndb_config.result WL #2747: After push fixes 2006-01-19 13:32:58 -05:00
ndb_database.result
ndb_dd_basic.result Changes done from Jonas's review of pervious commit 2006-01-11 18:50:04 +01:00
ndb_dd_ddl.result Updated with feedback omer provided 2006-01-20 04:00:10 +01:00
ndb_dd_disk2memory.result disabled.def: 2006-01-24 13:26:21 +01:00
ndb_default_cluster.require
ndb_gis.result WL #2604: Partition Management 2006-01-17 08:40:00 +01:00
ndb_grant.result
ndb_index.result
ndb_index_ordered.result
ndb_index_unique.result
ndb_insert.result
ndb_limit.result
ndb_lock.result
ndb_minmax.result
ndb_multi.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
ndb_multi_row.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
ndb_partition_error.result Table definition cache, part 2 2005-11-23 22:45:02 +02:00
ndb_partition_key.result WL #2604: Partition Management 2006-01-17 08:40:00 +01:00
ndb_partition_range.result WL#2506: Information Schema tables for PARTITIONing 2006-01-10 19:44:04 +04:00
ndb_read_multi_range.result Fixed test case. 2005-12-14 00:23:46 +02:00
ndb_replace.result
ndb_restore.result added --core option in mysql-test-run for ndb 2006-01-30 17:06:31 +01:00
ndb_subquery.result
ndb_transaction.result
ndb_truncate.result
ndb_types.result
ndb_update.result
negation_elimination.result
not_embedded.require
not_embedded_server.result
not_ndb.require wl2325 wl2324 2006-01-12 19:51:02 +01:00
not_openssl.require
not_row_based.require WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
null.result Fix for bug#11491 Misleading error message if not NULL column set to NULL, 2005-12-01 15:30:11 +04:00
null_key.result Fix for bug#11491 Misleading error message if not NULL column set to NULL, 2005-12-01 15:30:11 +04:00
odbc.result
olap.result
openssl_1.result
openssl_2.result
order_by.result
order_fill_sortbuf.result
outfile.result
overflow.result
packet.result
partition.result Manual merge 2006-01-18 14:09:08 +03:00
partition_02myisam.result Fixes for broken tree 2006-01-19 08:58:32 -05:00
partition_03ndb.result WL #2604: Partition Management 2006-01-17 08:40:00 +01:00
partition_error.result WL #2604: Partition Management 2006-01-17 08:40:00 +01:00
partition_hash.result BUG# 14524 - Partitions: crash if blackhole 2006-01-30 10:07:39 -06:00
partition_list.result tests fixed as we implement informative error message 2005-12-15 20:56:14 +04:00
partition_mgm_err.result BUG#15820 - Can create table with 1 partition, then doing ALTER .. ADD PARTITION crashes 2006-01-27 16:41:53 +01:00
partition_order.result
partition_pruning.result WL# 2986 2006-01-28 16:22:32 -08:00
partition_range.result tests fixed as we implement informative error message 2005-12-15 20:56:14 +04:00
preload.result
ps.result Merge mysql.com:/opt/local/work/mysql-5.0-for-merge 2006-01-26 16:36:33 +03:00
ps_1general.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
ps_2myisam.result Merge neptunus.(none):/home/msvensson/mysql/wl2930/my50-wl2930-integration 2005-12-20 14:35:52 +01:00
ps_3innodb.result Merge neptunus.(none):/home/msvensson/mysql/wl2930/my50-wl2930-integration 2005-12-20 14:35:52 +01:00
ps_4heap.result Merge neptunus.(none):/home/msvensson/mysql/wl2930/my50-wl2930-integration 2005-12-20 14:35:52 +01:00
ps_5merge.result Merge neptunus.(none):/home/msvensson/mysql/wl2930/my50-wl2930-integration 2005-12-20 14:35:52 +01:00
ps_6bdb.result Merge neptunus.(none):/home/msvensson/mysql/wl2930/my50-wl2930-integration 2005-12-20 14:35:52 +01:00
ps_7ndb.result Merge neptunus.(none):/home/msvensson/mysql/wl2930/my50-wl2930-integration 2005-12-20 14:35:52 +01:00
ps_10nestset.result
ps_11bugs.result
ps_grant.result Bug#14406 GRANTS ON objects with non-ascii names borked after FLUSH PRIVILEGES 2005-11-14 16:36:06 +04:00
query_cache.result Embedded-server related tests fixes 2006-01-19 13:25:12 +04:00
query_cache_merge.result
query_cache_notembedded.result Embedded-server related tests fixes 2006-01-19 13:25:12 +04:00
raid.result
range.result select.result, mysqldump-max.result: 2005-10-13 21:28:44 +05:00
read_only.result Fix for BUG#14703 "Valgrind error when inserting 0 into a BIT column (like in type_bit.test)": 2005-11-07 16:18:46 +01:00
rename.result
repair.result
replace.result
rollback.result
row.result
rowid_order_bdb.result
rowid_order_innodb.result
rpl000001.a.result
rpl000001.b.result
rpl000002.result
rpl000004.a.result
rpl000004.b.result
rpl000004.result
rpl000005.result Updated test cases for testing Cluster Replication using the rpl* test cases 2006-01-18 00:45:23 +01:00
rpl000006.result
rpl000008.result
rpl000009.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
rpl000010.result
rpl000011.result
rpl000013.result
rpl000017.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl000018.result
rpl_000012.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_000015.result Updated test cases for testing Cluster Replication using the rpl* test cases 2006-01-18 00:45:23 +01:00
rpl_alter.result
rpl_auto_increment.result
rpl_bit.result Updated test cases for testing Cluster Replication using the rpl* test cases 2006-01-18 00:45:23 +01:00
rpl_bit_npk.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_chain_temp_table.result
rpl_change_master.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_commit_after_flush.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_create_database.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
rpl_ddl.result Merge mysql.com:/home/alik/MySQL/devel/5.0-bug15103 2006-01-13 19:46:39 +03:00
rpl_deadlock_innodb.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_delete_no_where.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_do_grant.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_drop.result
rpl_drop_db.result Test case clean-up do to causing other test failures 2006-01-06 01:09:17 +01:00
rpl_drop_temp.result
rpl_dual_pos_advance.result
rpl_EE_err.result RBR test updates per lars request 2006-01-11 20:02:11 +01:00
rpl_empty_master_crash.result
rpl_err_ignoredtable.result Updated tests from Lars Review 2005-12-23 14:45:02 +01:00
rpl_failed_optimize.result
rpl_failsafe.result
rpl_flushlog_loop.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_foreign_key_innodb.result rpl_foreign_key_innodb.result, rpl_foreign_key.test: 2006-01-20 23:39:13 +01:00
rpl_free_items.result
rpl_get_lock.result
rpl_heap.result
rpl_ignore_grant.result
rpl_ignore_revoke.result BUG#9483 test was overworked to account reviews finally to leave only REVOKE check. 2006-01-10 13:44:08 +02:00
rpl_init_slave.result
rpl_innodb.result
rpl_insert_id.result
rpl_insert_ignore.result
rpl_insert_select.result
rpl_LD_INFILE.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_loaddata.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_loaddata2.result Updated test cases for testing Cluster Replication using the rpl* test cases 2006-01-18 00:45:23 +01:00
rpl_loaddata_m.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
rpl_loaddata_s.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_loaddatalocal.result
rpl_loadfile.result Updated test cases for testing Cluster Replication using the rpl* test cases 2006-01-18 00:45:23 +01:00
rpl_log_pos.result Updated test cases for testing Cluster Replication using the rpl* test cases 2006-01-18 00:45:23 +01:00
rpl_many_optimize.result
rpl_master_pos_wait.result
rpl_misc_functions.result
rpl_multi_delete.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_multi_delete2.result
rpl_multi_engine.result Test case clean-up do to causing other test failures 2006-01-06 01:09:17 +01:00
rpl_multi_update.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_multi_update2.result - set 'updating' in both tables list if we have two of them (because of subquery) (BUG#13236) 2005-10-14 00:02:38 +03:00
rpl_multi_update3.result
rpl_ndb_bank.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
rpl_ndb_basic.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
rpl_ndb_disk.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
rpl_ndb_idempotent.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
rpl_ndb_load.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
rpl_ndb_multi.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
rpl_ndb_sync.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
rpl_openssl.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_optimize.result
rpl_ps.result
rpl_redirect.result
rpl_relayrotate.result skip_name_resolve.result, skip_name_resolve.test: 2005-12-12 16:58:20 +01:00
rpl_relayspace.result
rpl_replicate_do.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_replicate_ignore_db.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_rewrt_db.result Updated tests from Lars Review 2005-12-23 14:45:02 +01:00
rpl_rotate_logs.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_001.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_4_bytes.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_basic_2myisam.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_basic_3innodb.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_basic_7ndb.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
rpl_row_basic_11bugs.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
rpl_row_blob_innodb.result New rbr blob test requested by Lars 2006-01-05 03:56:22 +01:00
rpl_row_blob_myisam.result New rbr blob test requested by Lars 2006-01-05 03:56:22 +01:00
rpl_row_charset.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_create_table.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_delayed_ins.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_drop.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_err_ignoredtable.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_flsh_tbls.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_func001.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_func002.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_func003.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_inexist_tbl.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_loaddata_m.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_log.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_max_relay_size.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_multi_query.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_multi_update3.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_mystery22.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_NOW.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_reset_slave.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_sp001.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_sp002_innodb.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_sp003.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_sp005.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_sp006_InnoDB.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_sp007_innodb.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_sp008.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_sp009.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_sp010.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_sp011.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_sp012.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_stop_middle.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_stop_middle_update.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_tabledefs.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_trig001.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_trig002.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_trig003.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_trig004.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_until.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_USER.result Updated test cases for testing Cluster Replication using the rpl* test cases 2006-01-18 00:45:23 +01:00
rpl_row_UUID.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_row_view01.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_server_id1.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_server_id2.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_session_var.result
rpl_set_charset.result
rpl_skip_error.result
rpl_slave_status.result
rpl_sp.result rpl_sp.test, disabled.def, rpl_stm_mystery22.test: 2006-01-12 17:05:25 +01:00
rpl_sp004.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_sp_effects.result
rpl_sporadic_master.result
rpl_start_stop_slave.result
rpl_stm_000001.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_stm_charset.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_stm_EE_err2.result RBR test updates per lars request 2006-01-11 20:02:11 +01:00
rpl_stm_flsh_tbls.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_stm_log.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_stm_max_relay_size.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_stm_multi_query.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_stm_mystery22.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_stm_no_op.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_stm_reset_slave.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_stm_until.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_temporary.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_timezone.result Updated test cases for testing Cluster Replication using the rpl* test cases 2006-01-18 00:45:23 +01:00
rpl_trigger.result Fixed BUG #14614: Replication of tables with trigger generates 2005-12-11 17:06:36 +03:00
rpl_user_variables.result Updated test cases for testing Cluster Replication using the rpl* test cases 2006-01-18 00:45:23 +01:00
rpl_variables.result
rpl_view.result Updated tests from Lars Review 2005-12-23 14:45:02 +01:00
schema.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
select.result Merge 2006-01-13 16:27:38 +03:00
select_found.result
select_safe.result
server_id.require
server_id1.require
show_check.result WL1019: complete patch. Reapplied patch to the clean 2006-01-19 05:56:06 +03:00
skip_grants.result WL#2818 (Add creator to the trigger definition for privilege 2005-11-10 22:25:03 +03:00
skip_name_resolve.result skip_name_resolve.result, skip_name_resolve.test: 2005-12-12 16:58:20 +01:00
slave-running.result
slave-stopped.result
sp-big.result Patch for WL#2894: Make stored routine variables work 2005-12-07 17:01:17 +03:00
sp-code.result Removed forgotten test line in sp-code.test. 2005-11-18 18:05:04 +01:00
sp-destruct.result Fixed BUG#14233: Crash after tampering with the mysql.proc table 2005-11-25 17:09:26 +01:00
sp-dynamic.result Patch for WL#2894: Make stored routine variables work 2005-12-07 17:01:17 +03:00
sp-error.result Embedded-server related tests fixes 2006-01-19 13:25:12 +04:00
sp-goto.result
sp-prelocking.result added missing drop view at end of test 2005-11-24 09:56:48 +01:00
sp-security.result sp-security.result, sp.result, sp-security.test, sp.test: 2005-10-16 22:47:19 +04:00
sp-threads.result
sp-vars.result Merge WL#2984 2005-12-12 13:29:48 +03:00
sp.result Merge bk@192.168.21.1:mysql-5.1-new into mysql.com:/home/hf/work/5.1.emb 2006-01-19 18:05:57 +04:00
sp_notembedded.result Fixes about the embedded-server in 5.1 2006-01-23 11:58:14 +04:00
sp_trans.result Fixed BUG#13729 Stored procedures: packet error after exception handled 2005-11-23 11:56:53 +01:00
sql_mode.result Make storage engines "pluggable", handlerton work 2005-11-07 16:25:06 +01:00
ssl.result
ssl_compress.result
status.result
strict.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
subselect.result Fixed bug #12762: 2005-10-15 14:32:37 -07:00
subselect2.result
subselect_gis.result
subselect_innodb.result avoiding of calling Item::val_* methods family with opt_range mem_root, because its life time is too short. (BUG#14342) 2005-11-04 13:16:46 +02:00
subselect_notembedded.result Embedded-server related tests fixes 2006-01-19 13:25:12 +04:00
sum_distinct-big.result Patch for WL#2894: Make stored routine variables work 2005-12-07 17:01:17 +03:00
sum_distinct.result
symlink.result
synchronization.result
system_mysql_db.result post-merge fixes of fix for bug#16642 (No I_S.EVENTS table) 2006-01-30 17:12:30 +01:00
system_mysql_db_refs.result
tablelock.result
temp_table.result Table definition cache, part 2 2005-11-23 22:45:02 +02:00
testdb_only.require
timezone.result
timezone2.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
timezone3.result
timezone_grant.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
trigger-compat.result Fix for BUG#15103: SHOW TRIGGERS: small output alignment problem. 2006-01-12 03:02:52 +03:00
trigger-grant.result Fix for BUG#15103: SHOW TRIGGERS: small output alignment problem. 2006-01-12 03:02:52 +03:00
trigger.result Fix for BUG#15103: SHOW TRIGGERS: small output alignment problem. 2006-01-12 03:02:52 +03:00
true.require
truncate.result
type_binary.result Merge mysql.com:/home/jimw/my/mysql-5.0-14299 2005-12-06 14:16:34 -08:00
type_bit.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
type_bit_innodb.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
type_blob.result Move handling of suffix_length from strnxfrm_bin() to filesort to ensure proper sorting of all kind of binary objects 2005-10-14 00:04:52 +03:00
type_date.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
type_datetime.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
type_decimal.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
type_enum.result
type_float.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
type_nchar.result
type_newdecimal-big.result Merge WL#2984 2005-12-12 13:29:48 +03:00
type_newdecimal.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
type_ranges.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
type_set.result
type_time.result Merge BUG#15110 from 5.0 into 5.1. 2006-01-13 19:09:27 +03:00
type_timestamp.result
type_uint.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
type_varchar.result
type_year.result
union.result Fix union.result 2005-11-30 13:10:08 -08:00
update.result Manually merged 2005-12-02 19:42:14 +03:00
user_limits.result
user_var-binlog.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
user_var.result Reverting patch for BUG #14009 (use of abs() on null value causes problems with filesort 2005-11-01 15:54:30 +02:00
varbinary.result
variables.result Merge mysql.com:/home/my/mysql-5.1 2005-11-23 22:58:53 +02:00
view.result Merge bk@192.168.21.1:mysql-5.1-new into mysql.com:/home/hf/work/5.1.emb 2006-01-19 18:05:57 +04:00
view_grant.result Embedded-server related tests fixes 2006-01-19 13:25:12 +04:00
view_query_cache.result We should not skip temptable view along with other derived 2005-12-01 12:01:38 +02:00
wait_timeout.result
warnings.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
windows.result
xa.result
xml.result Adding XPath support: ExtractValue and UpdateXML functions. 2005-12-21 17:13:52 +04:00