mariadb/mysql-test/r
unknown c3542cebf9 fix for bug#16642 (Events: No INFORMATION_SCHEMA.EVENTS table)
post-review change - use pointer instead of copy on the stack.
WL#1034 (Internal CRON)
 This patch adds INFORMATION_SCHEMA.EVENTS table with the following format:
  EVENT_CATALOG  - MYSQL_TYPE_STRING  (Always NULL)
  EVENT_SCHEMA   - MYSQL_TYPE_STRING  (the database)
  EVENT_NAME     - MYSQL_TYPE_STRING  (the name)
  DEFINER        - MYSQL_TYPE_STRING  (user@host)
  EVENT_BODY     - MYSQL_TYPE_STRING  (the body from mysql.event)
  EVENT_TYPE     - MYSQL_TYPE_STRING  ("ONE TIME" | "RECURRING")
  EXECUTE_AT     - MYSQL_TYPE_TIMESTAMP (set for "ONE TIME" otherwise NULL)
  INTERVAL_VALUE - MYSQL_TYPE_LONG    (set for RECURRING otherwise NULL)
  INTERVAL_FIELD - MYSQL_TYPE_STRING  (set for RECURRING otherwise NULL)
  SQL_MODE       - MYSQL_TYPE_STRING  (for now NULL)
  STARTS         - MYSQL_TYPE_TIMESTAMP (starts from mysql.event)
  ENDS           - MYSQL_TYPE_TIMESTAMP (ends from mysql.event)
  STATUS         - MYSQL_TYPE_STRING  (ENABLED | DISABLED)
  ON_COMPLETION  - MYSQL_TYPE_STRING  (NOT PRESERVE | PRESERVE)
  CREATED        - MYSQL_TYPE_TIMESTAMP
  LAST_ALTERED   - MYSQL_TYPE_TIMESTAMP
  LAST_EXECUTED  - MYSQL_TYPE_TIMESTAMP
  EVENT_COMMENT  - MYSQL_TYPE_STRING

  SQL_MODE is NULL for now, because the value is still not stored in mysql.event .
Support will be added as a fix for another bug.

 This patch also adds SHOW [FULL] EVENTS [FROM db] [LIKE pattern]
1. SHOW EVENTS shows always only the events on the same user,
   because the PK of mysql.event is (definer, db, name) several 
   users may have event with the same name -> no information disclosure.
2. SHOW FULL EVENTS - shows the events (in the current db as SHOW EVENTS)
   of all users. The user has to have PROCESS privilege, if not then
   SHOW FULL EVENTS behave like SHOW EVENTS.
3. If [FROM db] is specified then this db is considered.
4. Event names can be filtered with LIKE pattern.
  SHOW EVENTS returns table with the following columns, which are subset of
  the data which is returned by SELECT * FROM I_S.EVENTS
   Db
   Name
   Definer 
   Type
   Execute at
   Interval value
   Interval field 
   Starts 
   Ends
   Status


mysql-test/lib/init_db.sql:
  change the PK - (definer, db, name)
  quicker searches when SHOW EVENTS;
  allow also different users to have events with the same name -> 
  no information disclosure
mysql-test/r/events.result:
  result of new tests
mysql-test/r/information_schema.result:
  result of new tests
mysql-test/r/information_schema_db.result:
  result of new tests
mysql-test/r/system_mysql_db.result:
  result of new tests
mysql-test/t/events.test:
  new tests for information_schema.events
scripts/mysql_create_system_tables.sh:
  change the PK of mysql.event to (definer, db, name)
scripts/mysql_fix_privilege_tables.sql:
  change the PK of mysql.event to (definer, db, name)
sql/event.cc:
  pass around the definer of the event because of the new PK
  which is (definer, db, name). It's needed for index searching.
sql/event.h:
  - make enum evex_table_field again public so it can be used
  in sql_show.cc
  - make created and modified ulonglong, because they should be such
  - make public evex_open_event_table so it can be used in sql_show.cc
sql/event_executor.cc:
  - cosmetics
sql/event_priv.h:
  - moved enum evex_table_field and evex_open_event_table()
    to event.h (made them therefore public)
sql/event_timed.cc:
  - in event_timed::init_definer() always fill this.definer with
    the concatenated value of definer_user@definer_host. Makes
    later the work easier.
  - pass around the definer wherever is needed for searching 
    (new prototype of evex_db_find_evex_aux)
sql/mysqld.cc:
  - add counter for SHOW EVENTS
sql/sql_lex.h:
  - register SHOW EVENTS as command
sql/sql_parse.cc:
  - handle SCH_EVENTS (I_S.EVENTS like SCH_TRIGGERS)
  - make additional check in case of SHOW EVENTS (check for EVENT on
    the current database. if it is null check_access() gives appropriate
    message back.
sql/sql_show.cc:
  - add INFORMATION_SCHEMA.EVENTS and SHOW EVENTS
  - I_S.EVENTS.SQL_MODE is NULL for now -> not implemented. Trudy
    asked to be added so bug #16642 can be completely closed. There
    is another bug report which will fix the lack of storage of
    SQL_MODE during event creation.
sql/sql_yacc.yy:
  - always call event_timed::init_definer() when CREATE/ALTER/DROP
    EVENT but not when just compiling the body of the event because
    in this case this operation is not needed, it takes memory and
    CPU time and at the end the result is not used. event_timed::definer
    is used only on SQLCOM_CREATE/ALTER/DROP_EVENT execution not on
    statement compilation.
  - add SHOW [FULL] EVENTS [FROM db] [LIKE pattern]
    in case of FULL and the user has PROCESS privilege then he will see
    also others' events in the current database, otherwise the output
    is the same as of SHOW EVENTS. Because the events are per DB only
    the events from the current database are shown. pattern is applied
    against event name. FROM db is self explanatory.
sql/table.h:
  add SCH_EVENTS as part of INFORMATION_SCHEMA
2006-01-30 13:15:23 +01:00
..
alias.result Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0 2005-06-27 13:12:10 +02:00
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 Merge mysql.com:/home/psergey/mysql-4.1-bug8510 2005-03-15 09:29:54 +03:00
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 fix test results - Bug #11328 2005-06-16 10:09:05 +02:00
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 type_binary.result, type_binary.test: 2005-10-13 19:16:19 +05:00
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 WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +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 Change sql_mode BROKEN_NOT to HIGH_NOT_PRECEDENCE 2004-11-27 19:26:46 +00:00
bulk_replace.result
case.result Fixed BUG#12589: Assert when creating temp. table from decimal stored 2005-09-27 17:07:28 +02:00
cast.result cast.result: 2005-11-21 21:11:28 +04:00
check.result Fix for bug#9897: Views: 'Check Table' crashes MySQL, with a view and a table in the statement 2005-05-07 12:17:54 +00:00
check_var_limit.require
client_xml.result Merge problem fixes 2005-06-27 12:25:15 +02:00
comments.result
compare.result Proper fix for comparision with ' ' 2005-02-01 16:27:08 +02:00
compress.result Updated after testing 2005-10-13 11:28:06 +02:00
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 Fix bug #9593 "The combination of COUNT, DISTINCT and CONCAT seems to lock the 2005-05-30 03:32:50 +04:00
count_distinct2.result WL#926 "AVG(DISTINCT) and other distincts", part 2 (out of 3): clean up 2005-03-15 03:46:19 +03:00
count_distinct3.result
create.result Merge mysql.com:/home/jimw/my/mysql-5.0-clean 2006-01-06 10:42:58 -08: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 Bug#12476 Some big5 codes are still missing. 2005-10-05 19:20:49 +05:00
ctype_collate.result merge 2005-04-11 15:11:52 +05:00
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_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 type_binary.result, type_binary.test: 2005-10-13 19:16:19 +05:00
ctype_create.result Syntax extention: 'ALTER DATABASE' without db name (after review) 2004-12-06 19:01:51 +03:00
ctype_eucjpms.result Fixed the ucs2 -> eucjpms conversion bug (bug#11717) 2005-07-18 13:38:56 -07:00
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 Bug#13046: LIKE pattern matching using prefix 2005-09-21 23:10:51 +05:00
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 Bug#9509 Optimizer: wrong result after AND with latin1_german2_ci 2005-05-05 21:13:57 +05:00
ctype_latin2.result Bug#6505 Wrong sorting order: 2005-05-06 18:41:41 +05:00
ctype_many.result type_binary.result, type_binary.test: 2005-10-13 19:16:19 +05:00
ctype_mb.result merge bug##7943: Wrong prefix lengths reported on UTF-8 columns 2005-01-21 16:55:17 +04:00
ctype_recoding.result Merge mysql.com:/usr/home/bar/mysql-4.1.b10446 2005-11-29 09:25:51 +04:00
ctype_sjis.result Bug#13046: LIKE pattern matching using prefix 2005-09-21 23:10:51 +05:00
ctype_tis620.result Merge msdesk.(none):/home/msvensson/mysql-4.1 2005-10-06 14:40:18 +02:00
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 test case fixed to pass w/o innodb 2005-09-25 15:44:05 +02:00
delayed.result Fix crash in 'INSERT DELAYED' statement that failed due to a 2005-08-01 17:00:03 -07:00
delete.result Fixed bug in multiple-table-delete where some rows was not deleted 2005-05-30 20:48:40 +03:00
derived.result Bug#10586 2005-09-08 18:15:05 +01:00
dirty_close.result
distinct.result bad merge fixed 2005-09-15 21:05:42 +02:00
drop.result wl2325 wl2324 2006-01-12 19:51:02 +01:00
empty_table.result
endspace.result Import Heikki's patch which was applied to the main tree only. 2005-03-20 14:38:51 +01:00
errors.result Merge mysql.com:/home/timka/mysql/src/5.0-virgin 2005-08-12 19:27:54 +03:00
events.result fix for bug#16642 (Events: No INFORMATION_SCHEMA.EVENTS table) 2006-01-30 13:15:23 +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 Improvement to federated for BUG#12659 2005-09-13 23:31:17 -07:00
federated_bug_13118.result Added testcase for BUG#13118 2005-09-16 16:17:44 -07:00
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 Merge mysql.com:/home/mydev/mysql-4.1-4100 2005-08-08 00:10:07 +02:00
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 Making FLUSH TABLES WITH READ LOCK killable while it's waiting for running commits to finish. Normally this step is not long but it's still nice to be killable 2004-12-02 23:02:38 +01:00
flush_table.result Table definition cache, part 2 2005-11-23 22:45:02 +02:00
foreign_key.result
fulltext.result Merge svojtovich@bk-internal.mysql.com:/home/bk/mysql-5.1-new 2006-01-16 22:27:36 +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 Windows compatibility changes of the 'rpl_delete_all', 2005-02-17 02:59:39 +01:00
fulltext_distinct.result
fulltext_left_join.result
fulltext_multi.result
fulltext_order_by.result Merge mysql.com:/home/timka/mysql/src/5.0-virgin 2005-08-12 19:27:54 +03:00
fulltext_update.result
fulltext_var.result fulltext_var.result: 2005-08-29 22:35:48 -05:00
func_compress.result skip last compress test if we're short of RAM 2004-11-28 16:31:14 +01:00
func_concat.result After merge fixes 2005-01-04 13:46:53 +02:00
func_crypt.result Handle errors returned by system crypt() in ENCRYPT(). (Bug #13619) 2005-10-06 16:15:53 -07:00
func_date_add.result Clean up merge from 4.1 2005-08-15 14:19:56 -07:00
func_default.result Addition to fix for bug #11314 (test case wasn't complete) 2005-06-14 17:50:24 +05:00
func_des_encrypt.result Fix crash caused by calling DES_ENCRYPT() without the --des-key-file 2005-07-07 11:49:44 -07:00
func_encrypt.result Portability fixes 2005-06-27 20:31:00 +03:00
func_encrypt_nossl.result Fix test after last push 2005-06-27 20:31:02 +03:00
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 merge 2005-06-14 00:05:27 +02:00
func_in.result type_binary.result, type_binary.test: 2005-10-13 19:16:19 +05:00
func_isnull.result
func_like.result Merge mysql.com:/usr/home/bar/mysql-4.1.b12611 2005-09-07 16:32:15 +05:00
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 Tests and results fixed with last precision/decimal related modifications 2005-05-06 01:01:39 +05:00
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 Fixed BUILD script to use --with-berkeley-db instead of --with-bdb 2005-02-19 18:58:27 +02:00
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 Merge mysql.com:/usr/home/bar/mysql-4.1.b12351 2005-08-12 17:10:00 +05:00
func_test.result func_str.result, null.result: 2005-08-26 22:25:45 -07:00
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 Merge deer.(none):/home/hf/work/mysql-4.1.clean 2005-08-27 18:10:46 +05:00
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 sql/sql_acl.cc 2005-03-23 19:18:25 +01:00
grant_cache.result Resolve merge from 4.1 2005-05-18 13:54:36 -07:00
greedy_optimizer.result Fix for BUG#7266. 2004-12-16 16:44:40 +02:00
group_by.result aftermerge 2005-09-09 12:47:57 +02:00
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 Additional storage engine called "blackhole". Customer request, and for that matter a Zawodny request. With this you can alter table to a type of table that would never store data. Its a /dev/null for a database. 2005-03-22 16:10:39 -08:00
have_compress.require
have_cp932.require Added cp932 character set 2005-05-05 10:36:17 -07:00
have_cp1250_ch.require Bug#8840 Empty string comparison and character set 'cp1250' 2005-03-03 14:15:37 +04:00
have_crypt.require
have_csv.require
have_debug.require
have_eucjpms.require Skip cp932 and eucjpms tests when the character sets are not compiled. 2005-02-01 14:37:51 +04:00
have_euckr.require Bug#15377 Valid multibyte sequences are truncated on INSERT 2005-12-09 16:37:58 +04:00
have_exampledb.require Fix for crummy compiler that didn't udnerstand for declaration. Another fix for example storage engine to pass, not skip, test. 2004-12-06 16:26:05 -08:00
have_federated_db.require -Added quote_data and needs_quotes (moved from federated handler. 2005-01-20 18:36:40 -08:00
have_gb2312.require Bug#15377 Valid multibyte sequences are truncated on INSERT 2005-12-09 16:37:58 +04:00
have_gbk.require ctype-gbk.c: 2005-07-22 21:06:02 +05:00
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 Bug#8191 - SELECT INTO OUTFILE insists on FROM clause 2005-05-08 22:56:58 +01:00
have_partition.require Patch for push of wl1354 Partitioning 2005-07-18 13:31:02 +02: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 Fix for BUG#13455: Make "ref" optimizer able to make this inference: 2005-09-30 01:34:19 +04:00
heap_auto_increment.result
heap_btree.result BUG#8924 'Explain' shows different strategy 2005-04-12 12:04:43 +02:00
heap_hash.result Bug#10178 - failure to find a row in heap table by concurrent UPDATEs 2005-06-24 19:47:19 +02:00
help.result Enable warnings for 'no default' fields being set to default when they 2005-01-14 17:09:35 -08:00
im_daemon_life_cycle.result WL#2789 "Instance Manager: test using mysql-test-run testing framework" 2005-10-01 01:14:50 +04:00
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 WL#2789 "Instance Manager: test using mysql-test-run testing framework" 2005-10-01 01:14:50 +04:00
im_options_unset.result WL#2789 "Instance Manager: test using mysql-test-run testing framework" 2005-10-01 01:14:50 +04:00
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 BUG#13484: In ha_innobase::cmp_ref call Field::key_cmp() as this is the function 2005-10-01 11:56:01 +04:00
index_merge_innodb2.result
index_merge_ror.result concurrent-insert can now be set to 2 for concurrent inserts when there is holes in the data file 2005-05-13 12:08:08 +03:00
index_merge_ror_cpk.result 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.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 Review of code pushed since last 5.0 pull: 2005-10-06 17:54:43 +03:00
information_schema_part.result WL#2506: Information Schema tables for PARTITIONing 2006-01-10 19:44:04 +04:00
init_connect.result Enlarged group item key_length by a varstring length field. 2004-12-16 11:41:52 +01:00
init_file.result WL#2930 2005-12-06 21:28:13 +01:00
innodb-big.result 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.result
innodb-lock.result
innodb-replace.result Small fixes done while reviewing pushed code 2005-04-06 16:52:41 +03:00
innodb.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
innodb_cache.result BUG#6883: Added implicit commit for CREATE TABLE, TRUNCATE TABLE and DROP/CREATE DATABASE 2005-05-27 04:17:33 +02:00
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 bug#5373: handler READ NEXT w/o HANDLER READ [FIRST] 2005-06-07 22:43:25 +02: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 Merge xiphis.org:/usr/home/antony/work2/p2-bug10109.3 2005-08-10 22:17:53 +01:00
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 Implementation of WL#2486 - 2005-08-12 17:57:19 +03:00
join_nested.result Remove t3 in join_nested.test 2005-11-24 19:51:52 +01:00
join_outer.result join_outer.result, opt_range.cc, item_cmpfunc.cc: 2005-09-07 17:42:47 +04:00
key.result WL#1563 - Modify MySQL to support fast CREATE/DROP INDEX 2006-01-12 10:05:07 +01:00
key_cache.result Bug#10473 - Can't set 'key_buffer_size' system variable to ZERO 2005-08-07 20:39:17 +02:00
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 Merge 2005-04-05 19:45:34 -07:00
loaddata.result Fix for bug#8294 Traditional: Misleading error message for invalid CAST to DATE 2005-12-02 15:01:44 +04:00
lock.result Merge 2005-05-24 15:52:48 +01:00
lock_multi.result BUG#9998 MySQL client hangs on "USE database" 2005-06-03 15:29:05 +02:00
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 Merge mysql.com:/home/jimw/my/mysql-4.1-clean 2005-08-31 19:12:16 -07:00
lowercase_table2.result lowercase_table2.test, lowercase_table2.result: 2005-07-05 17:27:37 +02:00
lowercase_table3.result Fix for bug#8156:information_schema and lowercase_table3 fail on OSX 2005-02-14 18:23:10 +03:00
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 postmerge fix 2005-09-14 12:24:14 +03:00
merge.result BUG#5390 - problems with merge tables 2005-12-22 13:48:00 +01:00
metadata.result Fixed BUG#12589: Assert when creating temp. table from decimal stored 2005-09-27 17:07:28 +02:00
multi_statement.result Review of code pushed since last 5.0 pull: 2005-10-06 17:54:43 +03:00
multi_update.result Implementation of WL#2486 - 2005-08-12 17:57:19 +03:00
myisam-blob.result
myisam.result Merge mysql.com:/home/mydev/mysql-4.1-4100 2005-11-16 10:23:42 +01:00
mysql.result Review of code pushed since last 5.0 pull: 2005-10-06 17:54:43 +03:00
mysql_client_test.result WL#2930 2005-12-06 21:28:13 +01:00
mysql_protocols.result
mysqlbinlog.result Tell the user that this ROLLBACK is added by mysqlbinlog (so that he does not wonder if it's present in binlog). This was brought up by Salle - thanks Salle. 2005-09-30 10:58:24 +02:00
mysqlbinlog2.result Tell the user that this ROLLBACK is added by mysqlbinlog (so that he does not wonder if it's present in binlog). This was brought up by Salle - thanks Salle. 2005-09-30 10:58:24 +02:00
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 wl2325 wl2324 2006-01-12 19:51:02 +01: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 - wl#2624 re-commit due to bk problem 2005-09-15 02:33:28 +02:00
ndb_cache.result Merge of query cache from 4.1 to 5.0 2005-02-04 10:56:53 +01:00
ndb_cache2.result WL#2269 Enable query cache for NDB part 2 2005-03-15 15:03:25 +01:00
ndb_cache_multi.result Added test case for multiple MySQL Servers connected to one cluster 2004-12-15 12:09:19 +01:00
ndb_cache_multi2.result ndb - ndb_multi - reset query cache at end of test 2005-02-21 11:45:51 +01:00
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 updated test as result of config change done in cluster startup 2005-11-24 12:36:42 +01:00
ndb_database.result Fix for Bug #9318 drop database does not drop ndb tables 2005-04-22 15:28:23 +02:00
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 Test clean up and moving over from old clone. 2006-01-11 17:06:14 +01:00
ndb_default_cluster.require added check in ndb tests that require "default" cluster running 2005-01-26 14:38:13 +01:00
ndb_gis.result WL #2604: Partition Management 2006-01-17 08:40:00 +01:00
ndb_grant.result fixed ndb_grant test 2004-11-26 15:27:45 +00:00
ndb_index.result
ndb_index_ordered.result ndb - wl#2624 re-commit due to bk problem 2005-09-15 02:33:28 +02:00
ndb_index_unique.result Invalid DEFAULT values for CREATE TABLE now generates errors. (Bug #5902) 2005-04-01 15:04:50 +03:00
ndb_insert.result Standardised on capital letters for NDBCLUSTER 2005-09-20 22:16:24 -04:00
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 WL #2747: Fix such that backup and restore works for user defined 2006-01-17 09:25:12 +01:00
ndb_subquery.result bug#11205 - ndb - 4006 when starting scan 2005-06-09 15:39:14 +02:00
ndb_transaction.result
ndb_truncate.result
ndb_types.result type_binary.result, type_binary.test: 2005-10-13 19:16:19 +05:00
ndb_update.result Re-generated 2005-04-21 10:59:21 +02:00
negation_elimination.result
not_embedded.require
not_embedded_server.result Implement WL#2661 "Prepared Statements: Dynamic SQL in Stored Procedures". 2005-09-03 03:13:18 +04:00
not_ndb.require wl2325 wl2324 2006-01-12 19:51:02 +01:00
not_openssl.require BUG#10589: des_encrypt functionality always return NULL 2005-06-17 18:07:46 +02:00
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 Manual merge 2005-09-15 22:21:30 +04:00
openssl_1.result Improved testing of ssl and compression 2005-10-04 15:43:55 +02:00
openssl_2.result
order_by.result WL#2486 - natural and using join according to SQL:2003 2005-08-23 18:08:04 +03:00
order_fill_sortbuf.result
outfile.result After merge fixes 2005-05-14 16:24:36 +03:00
overflow.result
packet.result
partition.result WL #2604: Partition Management 2006-01-17 08:40:00 +01: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# 15968 - Partitions: crash when insert with f1 = -1 into partition by hash(f1) 2006-01-06 18:52:49 -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 WL #2604: Partition Management 2006-01-17 08:40:00 +01:00
partition_order.result Patch for push of wl1354 Partitioning 2005-07-18 13:31:02 +02:00
partition_pruning.result add missing DROP TABLE [IF EXISTS] clauses 2005-12-26 10:16:36 +03:00
partition_range.result tests fixed as we implement informative error message 2005-12-15 20:56:14 +04:00
preload.result concurrent-insert can now be set to 2 for concurrent inserts when there is holes in the data file 2005-05-13 12:08:08 +03:00
ps.result WL #1034 (Internal CRON) 2006-01-10 21:02:19 +01: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 Merge moonbone.local:/work/15028-bug-5.0-mysql 2005-12-02 22:07:10 +03:00
query_cache_merge.result
query_cache_notembedded.result query_cache_notembedded.test, query_cache_notembedded.result: 2005-08-11 13:07:08 +03: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 Show all generated warnings in SHOW ERROR 2005-02-24 23:33:42 +02:00
replace.result remove the rest of isam/merge references 2005-04-05 13:17:49 +02:00
rollback.result
row.result stop on NULL comparison only if it is allowed (BUG#12509) 2005-08-18 12:07:14 +03:00
rowid_order_bdb.result
rowid_order_innodb.result BUG#13484: In ha_innobase::cmp_ref call Field::key_cmp() as this is the function 2005-10-01 11:56:01 +04:00
rpl000001.a.result
rpl000001.b.result
rpl000002.result
rpl000004.a.result
rpl000004.b.result
rpl000004.result
rpl000005.result Fix for bug #7100: relay_log_space_max missing from SHOW VARIABLES 2005-03-16 15:57:57 +03: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 WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_alter.result
rpl_auto_increment.result test made independend of server builtin features 2004-11-21 16:42:54 +02:00
rpl_bit.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +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 Fixed compiler warnings 2005-07-28 21:25:05 +03:00
rpl_dual_pos_advance.result Fix for BUG#13023: "SQL Thread is up but doesn't move forward". Details in slave.cc; 2005-10-12 13:29:55 +02:00
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 Merge mysql.com:/home/jimw/my/mysql-4.1-clean 2005-06-01 16:13:24 -07:00
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 WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +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 Bug#11401: Setting thd->lex so that engines (i.e., InnoDB) recognizes 2005-07-05 13:55:54 +02:00
rpl_insert_id.result Fix of an incorrect merge 2005-02-24 17:25:06 +01:00
rpl_insert_ignore.result A .test for BUG#6287 "Slave skips auto_increment values in Replication with InnoDB" 2004-12-16 23:14:41 +01:00
rpl_insert_select.result Added a test case for BUG#10456 2005-08-02 15:13:56 -06:00
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 WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +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 WL#874 "Extended LOAD DATA". 2005-03-16 04:32:47 +03:00
rpl_loadfile.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_log_pos.result WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +01:00
rpl_many_optimize.result A test for the BUG#7658 just fixed in 4.0 (could not put it into 4.0 as in 4.0 we don't replicate OPTIMIZE TABLE). 2005-01-10 15:13:33 +01:00
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 fix for BUG#11139 (multi-delete with alias breaking replication if table rules are 2005-09-14 06:31:38 -06:00
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 BUG#12618: Removing fake locking 2005-10-10 15:10:14 +02:00
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 WL#1012: All changes as one single changeset. 2005-12-22 06:39:02 +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 Invalid DEFAULT values for CREATE TABLE now generates errors. (Bug #5902) 2005-04-01 15:04:50 +03:00
rpl_set_charset.result
rpl_skip_error.result
rpl_slave_status.result Reverted old fix with sync_slave_with_master and added a replace commands 2005-09-12 10:50:42 +02:00
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 Fix for BUG#12637: Make SPs+user variables replication work: 2005-09-07 19:39:47 +04:00
rpl_sporadic_master.result
rpl_start_stop_slave.result Cleanups during review stage 2004-12-02 14:43:51 +02:00
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 tests from Lars Review 2005-12-23 14:45:02 +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 tests from Lars Review 2005-12-23 14:45:02 +01:00
rpl_variables.result A fix (bug #10703: rpl_variables.test failure). 2005-05-18 15:10:43 +05:00
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 Merge 2005-03-01 14:50:59 +02:00
select_safe.result Fix bug #11864 non unique names are allowed in subquery 2005-08-10 17:45:00 +04:00
server_id.require Added test case for multiple MySQL Servers connected to one cluster 2004-12-15 12:09:19 +01:00
server_id1.require Added test case for multiple MySQL Servers connected to one cluster 2004-12-15 12:09:19 +01:00
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 Fixed sp-error.test result after merging fix for bug #11555 "Stored procedures: 2005-12-07 16:55:16 +03:00
sp-goto.result Disabled the GOTO feature. (It's non-standard and undocumented.) 2005-07-01 15:25:51 +02:00
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 BUG#12228: Post review fixes: Added test case, code cleanup. 2005-08-10 21:17:02 +00:00
sp-vars.result Merge WL#2984 2005-12-12 13:29:48 +03:00
sp.result Manually merged 2006-01-16 16:57:15 +03: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 Updated after testing 2005-10-13 11:28:06 +02:00
ssl_compress.result Updated after testing 2005-10-13 11:28:06 +02:00
status.result fix (bug #10303: Misleading Last_query_cost value). 2005-09-06 15:00:35 +05:00
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 After merge fixes 2005-10-10 19:38:58 +02:00
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
sum_distinct-big.result Patch for WL#2894: Make stored routine variables work 2005-12-07 17:01:17 +03:00
sum_distinct.result 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.result Merged from 4.1 2005-03-03 15:01:46 -08:00
synchronization.result Better handling of ensuring that setup_tables() are not called twice 2005-01-03 21:04:33 +02:00
system_mysql_db.result fix for bug#16642 (Events: No INFORMATION_SCHEMA.EVENTS table) 2006-01-30 13:15:23 +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 WL#1420 convert NIST test for mysql 2005-01-26 10:19:28 +01:00
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 a fix (bug #6267: ENUM ... NOT NULL w/o default treated differently than other data types). 2005-05-13 16:44:14 +05:00
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 merge with 4.1 2005-02-28 12:18:39 +02:00
type_time.result Merge BUG#15110 from 5.0 into 5.1. 2006-01-13 19:09:27 +03:00
type_timestamp.result bug#10466: Datatype "timestamp" displays "YYYYMMDDHHMMSS" irrespective of display sizes. 2005-06-20 12:09:00 +02:00
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 Update test results. type_varchar changed because the size of the 2005-06-09 21:20:34 -07:00
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 Update test results 2005-05-02 11:45:06 -07:00
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 rurik.mysql.com:/home/igor/dev/mysql-5.0-0 2006-01-06 23:26:20 -08:00
view_grant.result Clear variable 2005-11-24 06:17:38 +02: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 Fix wait_timeout (and kill) handling on Mac OS X by cleaning up how 2005-10-11 09:12:12 -07:00
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 Fix handling of filenames that start the same as reserved filenames 2005-08-31 18:32:15 -07:00
xa.result Bug#12935 Local and XA transactions not mutually exclusive 2005-10-05 19:58:16 +02:00
xml.result Adding XPath support: ExtractValue and UpdateXML functions. 2005-12-21 17:13:52 +04:00