mariadb/mysql-test/t
unknown 361977c0da Fix for bug #11555 "Stored procedures: current SP tables locking make
impossible view security".

We should not expose names of tables which are explicitly or implicitly (via
routine or trigger) used by view even if we find that they are missing.
So during building of list of prelocked tables for statement we track which
routines (and therefore tables for these routines) are used from views. We
mark elements of LEX::routines set which correspond to routines used in views
by setting Sroutine_hash_entry::belong_to_view member to point to TABLE_LIST
object for topmost view which uses routine. We propagate this mark to all
routines which are used by this routine and which we add to this set. We also
mark tables used by such routine which we add to the list of tables for
prelocking as belonging to this view.


mysql-test/r/sp-error.result:
  Added test for bug #11555 "Stored procedures: current SP tables locking make 
  impossible view security".
mysql-test/r/view.result:
  We should not expose tables which are expicitly/implicitly used in view in
  check table statement.
mysql-test/t/sp-error.test:
  Added test for bug #11555 "Stored procedures: current SP tables locking make 
  impossible view security".
mysql-test/t/view.test:
  Removed comment obsoleted by bugfix.
sql/sp.cc:
  We should not expose names of tables which are explicitly or implicitly
  (via routine or trigger) used by view even if we find that they are missing.
  So during building of list of prelocked tables for statement we track which
  routines (and therefore tables for these routines) are used from views. We
  mark elements of LEX::routines set which correspond to routines used in views
  by setting Sroutine_hash_entry::belong_to_view member to point to TABLE_LIST
  object for topmost view which uses routine. We propagate this mark to all
  routines which are used by this routine and which we add to this set. We also
  mark tables used by such routine which we add to the list of tables for
  prelocking as belonging to this view.
sql/sp.h:
  sp_cache_routines_and_add_tables_for_view()/for_triggers():
    To be able to determine correctly uppermost view which uses this view/table
    with trigger we have to pass pointer to TABLE_LIST object instead of pointer
    to view's LEX or to Table_triggers_list object.
sql/sp_head.cc:
  sp_head::add_used_tables_to_table_list():
    Added new argument which allows to mark tables which are added to table
    list for prelocking as belonging to view (this allows properly hide names
    of tables which are used in routines used by views).
sql/sp_head.h:
  sp_head::add_used_tables_to_table_list():
    Added new argument which allows to mark tables which are added to table
    list for prelocking as belonging to view (this allows properly hide names
    of tables which are used in routines used by views).
sql/sql_base.cc:
  open_tables():
    sp_cache_routines_and_add_tables_for_view()/for_triggers() now accept
    pointer to table list element as last argument, this allows them to determine
    correctly uppermost view which uses this view/table with trigger.
sql/sql_trigger.h:
  Table_triggers_list:
    sp_cache_routines_and_add_tables_for_triggers() now accept pointer to table
    list element as last argument, this allows to determine correctly uppermost
    view which uses this table with trigger.
2005-12-07 12:27:17 +03:00
..
alias.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
alter_table.test Merge abarkov@bk-internal:/home/bk/mysql-5.0 2005-10-13 19:19:05 +05:00
analyse.test Manually merged 2005-10-28 23:17:51 +04:00
analyze.test Test suite for BUG#13673 (the bug was fixed in the bugfix for BUG#14138) 2005-11-15 18:14:53 +02:00
ansi.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
archive.test 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
archive_gis.test Add DROP TABLE before trying to create view (in mysqldump) 2005-10-27 22:45:18 +03:00
auto_increment.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
backup-master.sh
backup.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
bdb-alter-table-1.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bdb-alter-table-2-master.opt
bdb-alter-table-2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bdb-crash.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bdb-deadlock.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bdb-deadlock.tminus Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bdb.test Portability fix 2005-11-02 16:28:58 +02:00
bdb_cache-master.opt
bdb_cache.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bdb_gis.test Add DROP TABLE before trying to create view (in mysqldump) 2005-10-27 22:45:18 +03:00
bench_count_distinct.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bigint.test BUG#13126: When choosing join order for join with nested joins, don't produce join 2005-10-25 19:28:27 +04:00
binary.test type_binary.result, type_binary.test: 2005-10-13 19:16:19 +05:00
binlog-master.opt innodb-dependent test moved from rpl_rotate_logs.test to binlog.test 2005-02-23 20:35:59 +01:00
binlog.test Fixed binlog.test failure which occured after patch implementing 2005-03-16 23:12:27 +03:00
blackhole.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
bool.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
bulk_replace.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
case.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
cast.test Additional fix for Bug#14255 CAST(x AS BINARY(N)) does not pad 2005-11-21 19:59:58 +04:00
check.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
client_xml.test Cleanup tests and results after merge from 4.1 of embedded 2005-04-04 12:43:58 -07:00
comments.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
compare.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
compress.test Updated after testing 2005-10-13 11:28:06 +02:00
connect.test mysql-test/r/connect.result + mysql-test/t/connect.test 2005-11-07 22:30:44 +01:00
consistent_snapshot.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
constraints.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
count_distinct.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
count_distinct2-master.opt
count_distinct2.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
count_distinct3.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
create.test BUG#14480 post-fix: merge to 5.0 2005-11-09 14:47:58 +03:00
create_select_tmp.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
csv.test BUG#13406 - incorrect amount of "records deleted" in CSV. 2005-11-17 22:52:31 +01:00
ctype_big5.test Bug#12476 Some big5 codes are still missing. 2005-10-05 19:20:49 +05:00
ctype_collate.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_cp932.test Fix for bug #14183 (ctype_cp983.test fails with the embedded server) 2005-11-01 13:18:46 +04:00
ctype_cp932_binlog.test Merging 2005-11-03 16:17:11 +04:00
ctype_cp1250_ch.test Bug#13347: empty result from query with like and cp1250 charset 2005-10-25 14:49:04 +05:00
ctype_cp1251.test type_binary.result, type_binary.test: 2005-10-13 19:16:19 +05:00
ctype_create.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_eucjpms.test Fixed the ucs2 -> eucjpms conversion bug (bug#11717) 2005-07-18 13:38:56 -07:00
ctype_gbk.test Bug#13046: LIKE pattern matching using prefix 2005-09-21 23:10:51 +05:00
ctype_latin1.test Merge mysql.com:/usr/home/bar/mysql-4.1.b13145 2005-10-14 13:57:38 +05:00
ctype_latin1_de-master.opt
ctype_latin1_de.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ctype_latin2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_many.test type_binary.result, type_binary.test: 2005-10-13 19:16:19 +05:00
ctype_mb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_recoding.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ctype_sjis.test Bug#13046: LIKE pattern matching using prefix 2005-09-21 23:10:51 +05:00
ctype_tis620.test Bug#13046: LIKE pattern matching using prefix 2005-09-21 23:10:51 +05:00
ctype_uca.test Merge msdesk.(none):/home/msvensson/mysql-4.1 2005-10-06 14:40:18 +02:00
ctype_ucs.test Merge msdesk.(none):/home/msvensson/mysql-4.1 2005-10-06 14:40:18 +02:00
ctype_ucs_binlog.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ctype_ujis.test Merge msdesk.(none):/home/msvensson/mysql-4.1 2005-10-06 14:40:18 +02:00
ctype_utf8.test Bug#14146 CHAR(...USING ...) and CONVERT(CHAR(...) USING...) produce different results 2005-11-07 12:34:19 +04:00
date_formats-master.opt
date_formats.test Merge ua141d10.elisa.omakaista.fi:/home/my/bk/mysql-4.1 2005-10-27 23:43:20 +03:00
default.test test case fixed to pass w/o innodb 2005-09-25 15:44:05 +02:00
delayed.test Fix crash in 'INSERT DELAYED' statement that failed due to a 2005-08-01 17:00:03 -07:00
delete.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
derived.test Bug#10586 2005-09-08 18:15:05 +01:00
dirty_close.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
disabled.def bug#14433 - archive uses wrong ref_length 2005-11-16 15:17:08 +01:00
distinct.test bad merge fixed 2005-09-15 21:05:42 +02:00
drop.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
drop_temp_table.test Fixes during review of pushed code 2005-10-27 15:15:01 +03:00
empty_table.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
endspace.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
errors.test Merge mysql.com:/home/timka/mysql/src/5.0-virgin 2005-08-12 19:27:54 +03:00
exampledb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
explain.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
federated.test BUG# 14532 2005-10-31 17:26:45 -08:00
federated_archive.test Improvement to federated for BUG#12659 2005-09-13 23:31:17 -07:00
federated_bug_13118.test Added testcase for BUG#13118 2005-09-16 16:17:44 -07:00
flush.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
flush_block_commit.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
flush_read_lock_kill-master.opt flush_read_lock_kill-master.opt: 2004-12-13 14:21:59 +01:00
flush_read_lock_kill.test mysqltest improvements, updates after merge + test for 5.0 2005-09-01 17:01:23 +02:00
flush_table.test Fix bug #11934 Two sequential FLUSH TABLES WITH READ LOCK hangs client 2005-08-03 02:01:27 +04:00
foreign_key.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext.test Merge sanja.is.com.ua:/home/bell/mysql/bk/mysql-4.1 2005-11-15 19:22:00 +02:00
fulltext2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_cache.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_distinct.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_left_join.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_multi.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_order_by.test Merge mysql.com:/home/timka/mysql/src/5.0-virgin 2005-08-12 19:27:54 +03:00
fulltext_update.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
fulltext_var.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_compress.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_concat.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_crypt.test Handle errors returned by system crypt() in ENCRYPT(). (Bug #13619) 2005-10-06 16:15:53 -07:00
func_date_add.test Generate a warning/error when DATE_SUB/ADD() functions calculate a date 2005-08-02 15:28:09 -07:00
func_default.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_des_encrypt.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_encrypt-master.opt
func_encrypt.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_encrypt_nossl.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_equal.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_gconcat.test A test case for Bug#8568 "GROUP_CONCAT returns string, unless in 2005-11-18 23:46:04 +03:00
func_group.test bug#14433 - archive uses wrong ref_length 2005-11-16 15:17:08 +01:00
func_if.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_in.test type_binary.result, type_binary.test: 2005-10-13 19:16:19 +05:00
func_isnull.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_like.test func_like.result, func_like.test: 2005-09-06 16:16:10 +05:00
func_math.test Merge mysql.com:/home/jimw/my/mysql-4.1-clean 2005-10-27 18:46:00 -07:00
func_misc.test Fix cases where SLEEP() calls would get optimized away or cached. (Bug #12689) 2005-08-19 15:51:40 -07:00
func_op.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_regexp.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
func_sapdb.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_set.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
func_str.test Reviewing new pushed code 2005-10-12 00:58:22 +03:00
func_system.test func_system.result, func_system.test: 2005-08-08 19:09:54 +05:00
func_test.test func_str.result, null.result: 2005-08-26 22:25:45 -07:00
func_time.test Fix calculation of TIMESTAMPDIFF() of months and years. (Bug #13534) 2005-10-13 15:32:31 -07:00
func_timestamp.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
gcc296.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
gis-rtree.test Merge deer.(none):/home/hf/work/mysql-4.1.clean 2005-08-27 18:10:46 +05:00
gis.test Merge ua141d10.elisa.omakaista.fi:/home/my/bk/mysql-4.1 2005-10-31 11:54:36 +02:00
grant.test Merge mysql.com:/usr/home/bar/mysql-4.1.b10892 2005-08-08 19:04:10 +05:00
grant2.test Merge mysql.com:/home/dlenev/src/mysql-4.1-bg12423 2005-09-01 23:25:29 +04:00
grant3-master.opt - Added new error message. 2005-03-22 15:57:24 +02:00
grant3.test Cleanup tests and results after merge from 4.1 of embedded 2005-04-04 12:43:58 -07:00
grant_cache.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
greedy_optimizer.test
group_by.test merged 2005-09-09 12:43:25 +02:00
group_min_max.test Fix bug#13293 Wrongly used index results in endless loop. 2005-11-24 19:54:02 +03:00
handler.test Bug#14397 - OPTIMIZE TABLE with an open HANDLER causes a crash 2005-11-15 21:57:02 +01:00
having.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
heap.test Fixed test that failed on 32 bit systems 2005-08-09 11:21:45 +03:00
heap_auto_increment.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
heap_btree.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
heap_hash.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
help.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
im_daemon_life_cycle-im.opt WL#2789 "Instance Manager: test using mysql-test-run testing framework" 2005-10-01 01:14:50 +04:00
im_daemon_life_cycle.imtest WL#2789 "Instance Manager: test using mysql-test-run testing framework" 2005-10-01 01:14:50 +04:00
im_life_cycle.imtest 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.imtest WL#2789 "Instance Manager: test using mysql-test-run testing framework" 2005-10-01 01:14:50 +04:00
im_options_unset.imtest WL#2789 "Instance Manager: test using mysql-test-run testing framework" 2005-10-01 01:14:50 +04:00
im_utils.imtest WL#2789 "Instance Manager: test using mysql-test-run testing framework" 2005-10-01 01:14:50 +04:00
index_merge.test Fix for BUG#10804: allow differences in rows field in EXPLAIN output 2005-06-20 11:05:38 +02:00
index_merge_bdb.test
index_merge_innodb.test 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.test
index_merge_ror.test Fixed failing tests for not 32 bit intel machines 2005-05-16 13:34:23 +03:00
index_merge_ror_cpk.test Fix for BUG#8579 (failing test case): Allow small differences in #rows estimate in test results 2005-02-22 18:30:44 +03:00
information_schema.test Fix for bug#13818 SHOW CREATE VIEW / TABLE and information_schema.views fail 2005-11-11 13:39:46 +04:00
information_schema_db.test Fix for bug #10659: information_schema_db fail on Mac OS 2005-05-24 14:35:23 +04:00
information_schema_inno.test Review of code pushed since last 5.0 pull: 2005-10-06 17:54:43 +03:00
init_connect-master.opt
init_connect.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
init_file-master.opt
init_file.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
innodb-big.test Moved some old test and added a new test to only be run with mysql-test-run --big 2005-04-07 19:24:14 +03:00
innodb-deadlock.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
innodb-lock.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
innodb-master.opt
innodb-replace.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
innodb.test BUG#14056 Column prefix index on UTF-8 primary key column causes 'Can't find record..' 2005-10-19 12:06:29 -04:00
innodb_cache-master.opt
innodb_cache.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
innodb_gis.test Add DROP TABLE before trying to create view (in mysqldump) 2005-10-27 22:45:18 +03:00
innodb_handler.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
insert.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
insert_select-binlog.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
insert_select.test Merge 4.1 - 5.0 2005-10-28 02:36:19 +03:00
insert_update.test Merge xiphis.org:/usr/home/antony/work2/p2-bug10109.3 2005-08-10 22:17:53 +01:00
join.test WL#2486 - natural and using join according to SQL:2003 2005-08-23 18:08:04 +03:00
join_crash.test Implementation of WL#2486 - 2005-08-12 17:57:19 +03:00
join_nested.test Remove t3 in join_nested.test 2005-11-24 19:51:52 +01:00
join_outer.test Merge mysql.com:/home/alexi/dev/mysql-4.1-0 2005-09-06 23:49:54 +04:00
key.test After merge fix. 2005-08-29 21:06:45 +02:00
key_cache-master.opt
key_cache.test Bug#10473 - Can't set 'key_buffer_size' system variable to ZERO 2005-08-07 20:39:17 +02:00
key_diff.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
key_primary.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
keywords.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
kill.test Merge mysql.com:/Users/kent/mysql/bk/mysql-4.1-tmp 2005-10-13 12:38:38 +02:00
kill_n_check.sh portability fix: sh does not support "==". This resulted in IM tests failing on range of platforms. 2005-10-16 19:30:10 +04:00
limit.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
loaddata.test Merge mysql.com:/home/jimw/my/mysql-4.1-clean 2005-10-26 14:11:08 -07:00
lock.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
lock_multi.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
lock_tables_lost_commit-master.opt
lock_tables_lost_commit.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
lowercase_table-master.opt
lowercase_table.test Merge mysql.com:/home/jimw/my/mysql-4.1-clean 2005-08-31 19:12:16 -07:00
lowercase_table2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
lowercase_table3-master.opt
lowercase_table3.test Make lowercase_table3 get skipped on Windows, as intended. (Bug #11568) 2005-08-02 15:58:41 -07:00
lowercase_table_grant-master.opt Always lowercase database names from 'host' and 'db' grant tables when they 2005-02-15 13:36:46 -08:00
lowercase_table_grant.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
lowercase_table_qcache-master.opt
lowercase_table_qcache.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
lowercase_view-master.opt ixed table and db name of fields incase of lower_case_table_names (BUG#5154) 2004-09-07 19:58:02 +03:00
lowercase_view.test postmerge changes 2005-09-02 09:50:17 +03:00
merge.test Merge mysql.com:/home/mydev/mysql-4.1-4100 2005-09-29 14:07:32 +02:00
metadata.test Fix mysql_info() returning bad data in the results of a multi-statement 2005-08-10 18:32:17 -07:00
mix_innodb_myisam_binlog-master.opt Fix for BUG##5714 "Insert into MyISAM table and select ... for update]": 2004-11-04 19:19:23 +01:00
mix_innodb_myisam_binlog.test Fix mix_innodb_myisam_binlog test and results after merge 2005-11-17 20:17:49 -08:00
multi_statement-master.opt Log each slow query in a multi-statement query to the slow query log. 2005-02-17 11:48:44 -08:00
multi_statement.test Review of code pushed since last 5.0 pull: 2005-10-06 17:54:43 +03:00
multi_update-master.opt
multi_update.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
myisam-blob-master.opt
myisam-blob.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
myisam.test Merge mysql.com:/home/mydev/mysql-4.1-4100 2005-11-16 10:23:42 +01:00
mysql.test Merge bk-internal.mysql.com:/home/bk/mysql-5.0 2005-10-08 03:37:23 +03:00
mysql_client_test.test Fix incorrect casts in my_getopt code that capped the maximum of longlong 2005-10-25 10:10:53 -07:00
mysql_delimiter.sql Fix 'source' command in mysql client to handle delimiter command 2005-08-09 12:17:28 -07:00
mysql_delimiter_source.sql Fix 'source' command in mysql client to handle delimiter command 2005-08-09 12:17:28 -07:00
mysql_protocols.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
mysqlbinlog-master.opt
mysqlbinlog.test mysqlbinlog.test: 2005-09-24 04:11:51 +02:00
mysqlbinlog2.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
mysqlcheck.test Fix for bug#13783 mysqlcheck tries to optimize and analyze information_schema 2005-10-18 14:25:03 +05:00
mysqldump-max.test BUG #7815 2005-09-26 22:43:09 -07:00
mysqldump.test Fixed BUG #14554: mysqldump does not separate "ROW" and trigger 2005-11-21 13:36:48 +03:00
mysqlshow.test Review of code pushed since last 5.0 pull: 2005-10-06 17:54:43 +03:00
mysqltest.test Merge neptunus.(none):/home/msvensson/mysql/mysql-5.0 2005-10-12 13:59:00 +02:00
ndb_alter_table.test Merge mysql.com:/opt/local/work/mysql-4.1-root 2005-11-25 13:57:13 +03:00
ndb_autodiscover.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_autodiscover2-master.opt
ndb_autodiscover2.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
ndb_basic.test Merge mysql.com:/opt/local/work/mysql-4.1-root 2005-11-25 13:57:13 +03:00
ndb_bitfield.test enabled mysqldump hex-blob option for bit fields 2005-09-14 15:46:31 +02:00
ndb_blob.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_cache.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_cache2.test Disabled test for embedded 2005-04-21 11:11:37 +02:00
ndb_cache_multi.test Disabled test for embedded 2005-04-21 11:11:37 +02:00
ndb_cache_multi2.test Disabled test for embedded 2005-04-21 11:11:37 +02:00
ndb_charset.test ndb - bug#14007 5.0 *** does not automerge into 5.1 *** 2005-11-16 13:26:26 +01:00
ndb_condition_pushdown.test type_binary.result, type_binary.test: 2005-10-13 19:16:19 +05:00
ndb_config.test Bug #13009 No gaps allowed in node id number sequence 2005-10-12 14:17:39 +02:00
ndb_database.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_gis.test Add DROP TABLE before trying to create view (in mysqldump) 2005-10-27 22:45:18 +03:00
ndb_grant.later Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_index.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_index_ordered.test ndb - fix ha_ndb crash on ordered index on nullable varchar 2005-09-01 14:12:48 +02:00
ndb_index_unique.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_insert.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_limit.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_lock.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_minmax.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_multi.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_read_multi_range.test Disabled test for embedded 2005-04-21 11:11:37 +02:00
ndb_replace.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_restore.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_subquery.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ndb_transaction.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_truncate.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ndb_types.test type_binary.result, type_binary.test: 2005-10-13 19:16:19 +05:00
ndb_update.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
negation_elimination.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
not_embedded_server-master.opt Force a server restart for the not_embedded_server test to satisfy 2005-10-13 11:10:45 -07:00
not_embedded_server.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
null.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
null_key.test WL#2486 - natural and using join according to SQL:2003 2005-08-23 18:08:04 +03:00
odbc.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
olap.test Manual merge 2005-09-15 22:21:30 +04:00
openssl_1.test Always test ssl and compress 2005-10-12 13:56:07 +02:00
order_by.test WL#2486 - natural and using join according to SQL:2003 2005-08-23 18:08:04 +03:00
order_fill_sortbuf-master.opt
order_fill_sortbuf.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
outfile.test Fix for bug#13202 SELECT * INTO OUTFILE ... FROM information_schema.schemata now fails 2005-10-07 14:16:44 +05:00
overflow.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
packet.test Skip two tests that fail on Windows that just reflect limitations of 2005-08-03 17:38:55 -07:00
preload.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps.test Merge mysql.com:/opt/local/work/mysql-4.1-root 2005-11-25 13:57:13 +03:00
ps_1general.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ps_2myisam.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_3innodb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_4heap.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ps_5merge.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
ps_6bdb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_7ndb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_10nestset.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_11bugs.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
ps_grant.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
query_cache.test Merge rkalimullin@bk-internal.mysql.com:/home/bk/mysql-5.0 2005-10-24 11:36:29 +05:00
query_cache_merge.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
query_cache_notembedded.test query_cache_notembedded.test, query_cache_notembedded.result: 2005-08-11 13:07:08 +03:00
raid.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
range.test select.result, mysqldump-max.result: 2005-10-13 21:28:44 +05:00
read_only.test Fix for BUG#4544 "read_only also affects temporary tables": 2005-10-17 10:52:34 +02:00
rename.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
repair.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
replace.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rollback.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
row.test stop on NULL comparison only if it is allowed (BUG#12509) 2005-08-18 12:07:14 +03:00
rowid_order_bdb.test
rowid_order_innodb.test
rpl000001-slave.opt
rpl000001.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl000002.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000004.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000005.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000006.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000008-slave.opt
rpl000008.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000009-slave.opt
rpl000009.test Fix incorrect spellings of "dropped" in source and tests. (Bug #12828) 2005-08-30 12:24:37 -07:00
rpl000010-slave.opt
rpl000010.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000011.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000012.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000013-slave.opt
rpl000013.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl000015-slave.sh
rpl000015.slave-mi
rpl000015.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl000017-slave.opt
rpl000017-slave.sh
rpl000017.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl000018-master.opt
rpl000018-slave.opt
rpl000018.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_alter.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_auto_increment-master.opt Added options --auto-increment-increment and --auto-increment-offset. 2004-09-15 22:10:31 +03:00
rpl_auto_increment.test test made independend of server builtin features 2004-11-21 16:42:54 +02:00
rpl_chain_temp_table.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_change_master.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_charset.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_commit_after_flush.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_create_database-master.opt Bug#6391 (binlog-do-db rules ignored) 2004-12-03 12:13:51 +01:00
rpl_create_database-slave.opt Bug#6391 (binlog-do-db rules ignored) 2004-12-03 12:13:51 +01:00
rpl_create_database.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_ddl.test BUG#13343 CREATE|etc TRIGGER|VIEW|USER don't commit the transaction (inconsistency) 2005-10-13 05:12:17 -04:00
rpl_deadlock-slave.opt Fix for BUG#8325 "Deadlock in replication thread stops replication": 2005-03-02 11:29:48 +01:00
rpl_deadlock.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_delete_all.test fixed test after merge 2005-08-19 11:38:14 +03:00
rpl_do_grant.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_drop.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_drop_db.test Added workaround for rpl_frop_db test to run on win32 properly. 2005-11-14 16:39:46 +03:00
rpl_drop_temp-slave.opt 1) undoing my fix for BUG#8055 "Trouble with replication from temporary tables and ignores" 2005-02-14 23:47:17 +01:00
rpl_drop_temp.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_dual_pos_advance-master.opt To force a restart at the end of test, the option file must be non-empty, it's not enough if it exists and is empty. 2005-10-12 22:29:36 +02:00
rpl_dual_pos_advance.test 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_error.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_empty_master_crash.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_error_ignored_table-slave.opt
rpl_error_ignored_table.test Adding comment for force manual merge 5.0 -> wl1012 2005-09-12 22:47:15 +02:00
rpl_failed_optimize-master.opt Simpler arena swapping code 2004-11-08 01:13:54 +02:00
rpl_failed_optimize.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_failsafe.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_flush_log_loop-master.opt
rpl_flush_log_loop-master.sh
rpl_flush_log_loop-slave.opt
rpl_flush_log_loop-slave.sh
rpl_flush_log_loop.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_flush_tables.test Merge serg.mylan:/usr/home/serg/Abk/mysql-4.1 2005-10-08 16:56:10 +02:00
rpl_free_items-slave.opt
rpl_free_items.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_get_lock.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_heap.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_ignore_grant-slave.opt
rpl_ignore_grant.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_init_slave-slave.opt
rpl_init_slave.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_innodb.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_insert_id-slave.opt
rpl_insert_id.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_insert_ignore-slave.opt A .test for BUG#6287 "Slave skips auto_increment values in Replication with InnoDB" 2004-12-16 23:14:41 +01:00
rpl_insert_ignore.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_insert_select.test The earlier commit for BUG#10456 did not add the test file 2005-08-02 15:15:28 -06:00
rpl_loaddata.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_loaddata_rule_m-master.opt
rpl_loaddata_rule_m.test Adding comment for force manual merge 5.0 -> wl1012 2005-09-12 22:47:15 +02:00
rpl_loaddata_rule_s-slave.opt
rpl_loaddata_rule_s.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_loaddatalocal.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_log-master.opt
rpl_log-slave.opt
rpl_log.test Adding comment for force manual merge 5.0 -> wl1012 2005-09-12 22:47:15 +02:00
rpl_log_pos.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_many_optimize.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_master_pos_wait.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_max_relay_size.test Adding comment for force manual merge 5.0 -> wl1012 2005-09-12 22:47:15 +02:00
rpl_misc_functions-slave.sh
rpl_misc_functions.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_multi_delete-slave.opt
rpl_multi_delete.test Fixed race conditions in rpl_multi_update and rpl_multi_delete tests which 2005-09-23 16:59:19 +04:00
rpl_multi_delete2-slave.opt fix for BUG#11139 (multi-delete with alias breaking replication if table rules are 2005-09-14 06:31:38 -06:00
rpl_multi_delete2.test fix for BUG#11139 (multi-delete with alias breaking replication if table rules are 2005-09-14 06:31:38 -06:00
rpl_multi_query.test Adding comment for force manual merge 5.0 -> wl1012 2005-09-12 22:47:15 +02:00
rpl_multi_update.test Fixed race conditions in rpl_multi_update and rpl_multi_delete tests which 2005-09-23 16:59:19 +04:00
rpl_multi_update2-slave.opt Bug#7011 2005-01-30 10:24:03 +00:00
rpl_multi_update2.test - 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.test BUG#12618: Removing fake locking 2005-10-10 15:10:14 +02:00
rpl_mystery22.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_openssl.test Fix for bug#13605 'rpl_openssl' test hangs 2005-10-06 19:51:08 +05:00
rpl_optimize.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_ps.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_redirect.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_relayrotate-slave.opt
rpl_relayrotate.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_relayspace-slave.opt
rpl_relayspace.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_replicate_do-slave.opt
rpl_replicate_do.test Merge mysql.com:/users/lthalmann/bk/mysql-4.1 2005-09-02 11:01:00 +02:00
rpl_reset_slave.test Adding comment for force manual merge 5.0 -> wl1012 2005-09-12 22:47:15 +02:00
rpl_rewrite_db-slave.opt BUG#6353 V2: 2004-11-15 17:03:54 +01:00
rpl_rewrite_db.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_rotate_logs-master.opt
rpl_rotate_logs-slave.sh
rpl_rotate_logs.slave-mi
rpl_rotate_logs.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_server_id1.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_server_id2-slave.opt
rpl_server_id2.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_session_var.test Invalid DEFAULT values for CREATE TABLE now generates errors. (Bug #5902) 2005-04-01 15:04:50 +03:00
rpl_set_charset.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_skip_error-slave.opt
rpl_skip_error.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_slave_status.test Reverted old fix with sync_slave_with_master and added a replace commands 2005-09-12 10:50:42 +02:00
rpl_sp-master.opt Approximative fixes for BUG#2610,2611,9100 i.e. WL#2146 binlogging/replication of routines (stored procs and functions). 2005-05-05 14:20:53 +02:00
rpl_sp-slave.opt WL#2971 "change log-bin-trust-routine-creators=0 to apply only to functions". 2005-11-10 17:50:51 +01:00
rpl_sp.test A fix and a test case for Bug#14077 "Failure to replicate a stored 2005-11-17 03:15:10 +03:00
rpl_sp_effects-master.opt Fix for BUG#12335 (SP replication) : New binlogging strategy for stored PROCEDUREs/FUNCTIONs. 2005-08-25 17:34:34 +04:00
rpl_sp_effects-slave.opt Fix for BUG#12335 (SP replication) : New binlogging strategy for stored PROCEDUREs/FUNCTIONs. 2005-08-25 17:34:34 +04:00
rpl_sp_effects.test Fix for BUG#12637: Make SPs+user variables replication work: 2005-09-07 19:39:47 +04:00
rpl_sporadic_master-master.opt
rpl_sporadic_master.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_start_stop_slave.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
rpl_temporary.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_timezone-master.opt
rpl_timezone-slave.opt Last part of WL#1062: better replication of timezones: no more use 2005-03-22 00:26:12 +01:00
rpl_timezone.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_trigger.test WL#2818 (Add creator to the trigger definition for privilege 2005-11-10 22:25:03 +03:00
rpl_until.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-01 17:21:03 +02:00
rpl_user_variables.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_variables-master.opt Add support for slave_compressed_protocol, slave_load_tmpdir, and 2005-05-07 06:55:47 -07:00
rpl_variables.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
rpl_view.test fixed portability 2005-09-14 23:12:01 +03:00
schema.test Update to add keyword "SCHEMA" and "SCHEMAS". Small test case was added too. 2004-10-01 12:39:11 -07:00
select.test Merge mysql.com:/opt/local/work/mysql-4.1-root 2005-11-25 13:57:13 +03:00
select_found.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
select_safe.test Fix bug #11864 non unique names are allowed in subquery 2005-08-10 17:45:00 +04:00
show_check.test Merge mysql.com:/usr/home/bar/mysql-4.1 2005-10-21 16:53:50 +05:00
skip_grants-master.opt BUG#9993 2 unexpected warnings when dropping a routine and --skip-grant-tables 2005-05-26 16:44:46 +02:00
skip_grants.test WL#2818 (Add creator to the trigger definition for privilege 2005-11-10 22:25:03 +03:00
skip_name_resolve-master.opt Allow hostnames that are IP addresses with a netmask even when 2005-02-14 20:33:14 -08:00
skip_name_resolve.test Fix for bug #13407 "Remote connecting crashes server" and couple of similar 2005-09-22 23:03:53 +04:00
sp-big.test A fix and a test case for Bug#6513 "Test Suite: Values inserted by using 2005-09-22 02:11:21 +04:00
sp-code.test Removed forgotten test line in sp-code.test. 2005-11-18 18:05:04 +01:00
sp-dynamic.test Recursion support made for SP (BUG#10100). 2005-11-23 01:11:19 +02:00
sp-error.test Fix for bug #11555 "Stored procedures: current SP tables locking make 2005-12-07 12:27:17 +03:00
sp-goto.test Disabled the GOTO feature. (It's non-standard and undocumented.) 2005-07-01 15:25:51 +02:00
sp-prelocking.test Prelocking-free SPs, post-review fixes: 2005-08-03 03:37:32 +00:00
sp-security.test Merge neptunus.(none):/home/msvensson/mysql/ssl_test/my50-ssl_test 2005-10-28 11:00:54 +02:00
sp-threads.test Merge mysql.com:/home/psergey/mysql-5.0-bug12228-r4 2005-08-10 21:17:52 +00:00
sp.test Some post-merge cleaning, and made assert THD::store_globals() work at all times. 2005-11-24 19:13:13 +01:00
sp_trans.test Fixed BUG#13729 Stored procedures: packet error after exception handled 2005-11-23 11:56:53 +01:00
sql_mode.test support of view underlying tables and SP functions security check added (BUG#9505) (WL#2787) 2005-10-28 00:18:23 +03:00
ssl.test Updated after testing 2005-10-13 11:28:06 +02:00
ssl_compress.test Updated after testing 2005-10-13 11:28:06 +02:00
status.test fix (bug #10303: Misleading Last_query_cost value). 2005-09-06 15:00:35 +05:00
strict.test Added option --valgrind-mysqltest to mysql-test-run 2005-09-14 01:41:44 +03:00
subselect.test fixes after merge of 4.1. 2005-10-13 00:29:23 +02:00
subselect2.test Populate t1 in order to get more predictable explain results. 2005-10-07 20:14:34 +05:00
subselect_gis.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
subselect_innodb.test 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.test Moved some old test and added a new test to only be run with mysql-test-run --big 2005-04-07 19:24:14 +03:00
sum_distinct.test Moved some old test and added a new test to only be run with mysql-test-run --big 2005-04-07 19:24:14 +03:00
symlink.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
synchronization.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
system_mysql_db.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
system_mysql_db_fix-master.opt
system_mysql_db_fix.test Merge mysql.com:/home/jimw/my/mysql-4.1-clean 2005-08-31 15:24:06 -07:00
system_mysql_db_refs.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
tablelock.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
temp_table-master.opt Make sure that the filename for temporary tables is built with fn_format() 2005-03-01 19:05:48 -08:00
temp_table.test Review of code pushed since last 5.0 pull: 2005-10-06 17:54:43 +03:00
timezone-master.opt
timezone.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
timezone2.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
timezone3-master.opt Fix for bug #6387 "Queried timestamp values do not match the inserted 2004-11-03 17:59:03 +00:00
timezone3.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
timezone_grant.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
trigger-compat.test WL#2818 (Add creator to the trigger definition for privilege 2005-11-10 22:25:03 +03:00
trigger-grant.test WL#2818 (Add creator to the trigger definition for privilege 2005-11-10 22:25:03 +03:00
trigger.test Merge sanja.is.com.ua:/home/bell/mysql/bk/work-bug7-5.0 2005-11-23 01:28:32 +02:00
truncate.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_binary.test Bug#14255 CAST(x AS BINARY(N)) does not pad 2005-10-25 15:36:39 +05:00
type_bit.test Fixed problems found by valgrind 2005-09-22 03:23:07 +03:00
type_bit_innodb.test Fix error code in some tests because of merge 2005-08-08 11:42:09 -07:00
type_blob.test 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.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_datetime.test Review of new pushed code 2005-08-09 00:13:49 +03:00
type_decimal.test Fix for bug #13372 (decimal union) 2005-09-27 15:11:39 +05:00
type_enum.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_float.test Merging 2005-10-11 14:58:25 +05:00
type_nchar.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_newdecimal.test merging 2005-11-10 16:32:49 +04:00
type_ranges.test WL#2486 - natural and using join according to SQL:2003 2005-08-23 18:08:04 +03:00
type_set.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_time.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_timestamp.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
type_uint.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
type_varchar.test Fix partial keys when converting VARCHAR to TEXT. (Bug #10543) 2005-05-25 18:11:47 -07:00
type_year.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
union-master.opt
union.test Merge neptunus.(none):/home/msvensson/mysql/mysql-4.1 2005-09-23 09:18:56 +02:00
update.test Manually merged 2005-11-01 19:47:53 +03:00
user_limits.test Cleanup tests and results after merge from 4.1 of embedded 2005-04-04 12:43:58 -07:00
user_var-binlog.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
user_var.test Reverting patch for BUG #14009 (use of abs() on null value causes problems with filesort 2005-11-01 15:54:30 +02:00
varbinary.test Added end marker for tests to make future merges easier 2005-07-28 03:22:47 +03:00
variables-master.opt
variables.test Recursion support made for SP (BUG#10100). 2005-11-23 01:11:19 +02:00
view.test Fix for bug #11555 "Stored procedures: current SP tables locking make 2005-12-07 12:27:17 +03:00
view_grant.test Avoiding removing dummy TABLE allocated on the stack (BUG#14726). 2005-11-21 21:11:02 +02:00
view_query_cache.test Fix bug #13424 locking view with query cache enabled crashes server 2005-09-26 19:08:26 +04:00
wait_timeout-master.opt Fix wait_timeout (and kill) handling on Mac OS X by cleaning up how 2005-10-11 09:12:12 -07:00
wait_timeout.test Fix wait_timeout (and kill) handling on Mac OS X by cleaning up how 2005-10-11 09:12:12 -07:00
warnings-master.opt
warnings.test Merge mysql.com:/home/my/mysql-4.1 2005-07-28 17:09:54 +03:00
windows.test Fix handling of filenames that start the same as reserved filenames 2005-08-31 18:32:15 -07:00
xa.test Bug#12935 Local and XA transactions not mutually exclusive 2005-10-05 19:58:16 +02:00