mariadb/mysql-test/t
unknown 0521fb5444 Most of the groundwork for sprint task 729 (implement FUNCTIONs).
Expanded the mysql.proc table, reworked the find/create/drop functions
completely, added new functions for FUNCTIONs (lotta functions here :),
got rid of some unnecessary use of Item_strings while at it. Extended
the parser correspondingly, and fiddled around a bit to make SP FUNCTIONs
coexist with UDFs.
Can now CREATE and DROP FUNCTIONs. Invoking yet to come...


Docs/sp-implemented.txt:
  Updated with info about CASCADE/RESTICT and METHOD, and some answers to questions.
include/mysqld_error.h:
  New error message for misuse of RETURN.
mysql-test/install_test_db.sh:
  Added enum field to mysql.proc to distinguish between FUNCTION and PROCEDURE.
mysql-test/r/sp.result:
  New test for creating and dropping FUNCTIONS.
mysql-test/t/sp.test:
  New test for creating and dropping FUNCTIONS.
scripts/mysql_install_db.sh:
  Added enum field to mysql.proc to distinguish between FUNCTION and PROCEDURE.
sql/lex.h:
  De-UDFed some symbol names, as they are now used for SPs as well.
  Added RETURN_SYM.
sql/share/czech/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/danish/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/dutch/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/english/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/estonian/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/french/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/german/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/greek/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/hungarian/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/italian/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/japanese/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/korean/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/norwegian-ny/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/norwegian/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/polish/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/portuguese/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/romanian/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/russian/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/serbian/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/slovak/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/spanish/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/swedish/errmsg.txt:
  New error message for misuse of RETURN.
sql/share/ukrainian/errmsg.txt:
  New error message for misuse of RETURN.
sql/sp.cc:
  Major rehack to accomodate FUNCTIONs, and to make it easier to add
  future in-memory cache of prepared SPs.
sql/sp.h:
  Major rehack to accomodate FUNCTIONs, and to make it easier to add
  future in-memory cache of prepared SPs.
sql/sp_head.cc:
  Now creates FUNCTIONs too. (And got rid of some unnecessary Item_string use.)
sql/sp_head.h:
  Now creates FUNCTIONs too. (And got rid of some unnecessary Item_string use.)
sql/sql_lex.h:
  New stored FUNCTION commands.
sql/sql_parse.cc:
  Added FUNCTION support ("drop" merged with the old UDF code), and made some
  additional changes for better error handling (following the sp.cc rehacking).
sql/sql_yacc.yy:
  Some former UDF specific symbols renamed.
  Added CREATE FUNCTION parsing.
  DROP FUNCTION had to be partly merged with the old UDF code, because of the similar
  syntax.
  RETURN statement added, but still a no-op.
2003-02-21 17:37:05 +01:00
..
alias.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
alter_table.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
analyse.test Fixex for some crashing bug 2003-01-10 17:36:59 +02:00
auto_increment.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
backup.test Merge with 4.0.11 2003-02-04 21:52:14 +02:00
bdb-alter-table-1.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
bdb-alter-table-2-master.opt Some trivial optimzations 2002-09-03 15:44:25 +03:00
bdb-alter-table-2.test Some trivial optimzations 2002-09-03 15:44:25 +03:00
bdb-crash.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
bdb-deadlock.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
bdb.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
bdb_cache-master.opt fixed bdb transaction with query cache bug 2002-11-06 00:41:25 +02:00
bdb_cache.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
bench_count_distinct.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
bigint.test Merge with 4.0.11 2003-02-04 21:52:14 +02:00
binary.test Merge with 4.0.11 2003-02-04 21:52:14 +02:00
bool.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
bulk_replace.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
case.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
cast.test Added new ANSI functions LOCALTIME, LOCALTIMESTAMP and CURRENT_USER 2002-11-24 15:47:19 +02:00
check.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
comments.test Don't give warnings for empty statements with comments 2002-02-14 15:04:14 +02:00
compare.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
connect.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
constraints.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
count_distinct.test merge 2003-02-10 18:01:29 +02:00
count_distinct2-master.opt
count_distinct2.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
create.test Simple misc cases - warnings 2003-01-07 18:59:08 -08:00
ctype_latin1_de-master.opt
ctype_latin1_de.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
ctype_many.test euc_kr, koi8_r and koi8_u have been renamed so that now 2003-01-09 17:39:02 +04:00
delayed.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
delete.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
derived.test after merge fix of 577 task (SCRUM, pre commit to be able to merge with static tables optimization fix) 2003-01-26 21:30:35 +02:00
dirty_close.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
distinct.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
drop.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
empty_table.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
err000001.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
explain.test merge 2003-02-08 01:12:58 +02:00
flush.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
flush_table.test fixed tests to be independed from environment 2002-08-30 21:32:59 +03:00
foreign_key.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
fulltext.test merged 2003-01-21 19:37:38 +01:00
fulltext2.test fulltext2.test: --enable/disable_warnings 2003-01-21 20:11:24 +01:00
fulltext_cache.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
fulltext_distinct.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
fulltext_left_join.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
fulltext_multi.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
fulltext_order_by.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
fulltext_update.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
fulltext_var.test
func_concat.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
func_crypt.test Fix problem in MIN/MAX optimisation (from last patch) 2003-02-07 17:57:07 +02:00
func_date_add.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
func_encrypt-master.opt added --loose to --des-key-file in *.opt for mysql-test not to fail w/o ssl 2002-05-14 16:36:08 +02:00
func_encrypt.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
func_equal.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
func_group.test after merge fix 2003-02-08 02:09:21 +02:00
func_if.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
func_in.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
func_isnull.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
func_like.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
func_math.test Change of internal key_field=NULL handling to avoid error messages. 2002-12-03 13:08:25 +02:00
func_misc.test
func_op.test
func_regexp.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
func_set.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
func_str.test Merge with 4.0.8 2003-01-06 02:04:52 +02:00
func_system.test Automatic conversion from CHAR(length) to BLOB when length > 255 2002-11-21 02:07:14 +02:00
func_test.test Moved test to correct file 2002-11-22 13:52:40 +02:00
func_time.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
func_timestamp.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
gcc296.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
grant.test Fix for a bug in SHOW GRANTS when : 2003-01-11 18:02:10 +02:00
grant_cache-master.opt Fixed access privilege bug in query cache. 2001-12-22 15:13:31 +02:00
grant_cache.test Merge with 4.0.11 2003-02-04 21:52:14 +02:00
group_by.test Merge with 4.0.11 2003-02-04 21:52:14 +02:00
handler.test Merge with 4.0.11 2003-02-04 21:52:14 +02:00
having.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
heap.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
heap_auto_increment.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
heap_btree.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
heap_hash.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
help.test Fixed a lot of wrong memory references as reported by valgrind 2003-02-12 21:55:37 +02:00
innodb-deadlock.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
innodb.test Merge with 4.0.11 tree to get latest bug fixes 2003-02-17 05:43:37 +02:00
innodb_cache-master.opt
innodb_cache.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
innodb_handler.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
ins000001.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
insert.test A feature of doing automatick result buffering when INSERT is 2003-01-28 18:55:52 +02:00
insert_select.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
insert_update.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
isam.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
join.test Merge with 4.0 to get fix for MIN/MAX 2003-02-07 16:38:37 +02:00
join_crash.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
join_outer.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
key.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
key_diff.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
key_primary.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
keywords.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
kill.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
limit.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
lock.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
lock_multi.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
lowercase_table-master.opt Added CREATE TEMPORARY TABLES and LOCK TABLES to db and host tables 2002-09-16 15:55:19 +03:00
lowercase_table.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
merge.test Merge with 4.0.9 2003-01-18 03:13:37 +02:00
multi_update.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
myisam.test Fixed a lot of wrong memory references as reported by valgrind 2003-02-12 21:55:37 +02:00
null.test Merge with 4.0.9 2003-01-18 03:13:37 +02:00
null_key.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
odbc.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
olap.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
openssl_1.test
openssl_2.test
order_by.test Merge with 4.0 to get fix for MIN/MAX 2003-02-07 16:38:37 +02:00
order_fill_sortbuf-master.opt
order_fill_sortbuf.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
outfile.test A fix for a charset bug in the select_export (select into 2002-12-31 18:01:53 +02:00
overflow.test
packet.test Added support for max_allowed_packet in option files read by mysql_option() 2003-01-04 15:17:16 +02:00
query_cache-master.opt Removed not used functions from sql_cache 2001-12-14 16:02:41 +02:00
query_cache.test Merge with 4.0.11 2003-02-04 21:52:14 +02:00
raid.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
range.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rename.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
repair.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
replace.test SCRUM 2003-01-22 20:08:12 +04:00
rollback.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
row.test fixed row items with group functions 2003-01-29 20:44:47 +02:00
rpl000001.test Merge with 4.0.11 tree to get latest bug fixes 2003-02-17 05:43:37 +02:00
rpl000002.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000004.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000005.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000006.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000008-slave.opt Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000008.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000009-slave.opt Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000009.test after merge fix 2003-02-08 02:09:21 +02:00
rpl000010-slave.opt
rpl000010.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000011.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000012.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000013-slave.opt
rpl000013.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl000015-slave-master-info.opt replication updates and bugfixes. Still not perfect - there is some strange 2002-03-15 18:44:44 -07:00
rpl000015-slave.sh
rpl000015.test Merge with 4.0.11 2003-02-04 21:52:14 +02:00
rpl000017-slave.opt
rpl000017-slave.sh SCRUM: Main change for Secure connection handling. Still needs some more coding. Commit 2002-11-24 17:07:53 +03:00
rpl000017.test Merge with 4.0.11 2003-02-04 21:52:14 +02:00
rpl000018-master.opt
rpl000018-slave.opt
rpl000018.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl_alter.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl_empty_master_crash.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl_failsafe.test altered syntax from SLAVE START|STOP to START|STOP SLAVE 2002-10-24 17:46:14 -06:00
rpl_flush_log_loop-master.opt Fix MySQL Test so it will not depend on current host in log file naming. 2002-09-15 02:17:20 +04:00
rpl_flush_log_loop-master.sh Repeatable test case in mysql-test format for flush-logs problem with 2002-09-05 01:36:49 +04:00
rpl_flush_log_loop-slave.opt Fix MySQL Test so it will not depend on current host in log file naming. 2002-09-15 02:17:20 +04:00
rpl_flush_log_loop-slave.sh Repeatable test case in mysql-test format for flush-logs problem with 2002-09-05 01:36:49 +04:00
rpl_flush_log_loop.test altered syntax from SLAVE START|STOP to START|STOP SLAVE 2002-10-24 17:46:14 -06:00
rpl_get_lock.test Lots of code fixes to the replication code (especially the binary logging and index log file handling) 2002-08-08 03:12:02 +03:00
rpl_insert_id.test After merge fixes & remove compiler warnings 2003-02-07 15:47:24 +02:00
rpl_loaddata.test Guard against compiling without -fno-exceptions 2003-01-14 11:27:26 +02:00
rpl_log-master.opt Guard against compiling without -fno-exceptions 2003-01-14 11:27:26 +02:00
rpl_log.test Changed binlog name padding from binlog.001 to binlog.000001 2002-10-29 15:11:13 -07:00
rpl_log_pos.test Added support for DROP TEMPORARY TABLE 2003-01-04 15:37:20 +02:00
rpl_master_pos_wait.test Added timeout for wait_for_master_pos 2003-01-25 15:07:51 +02:00
rpl_mystery22.test altered syntax from SLAVE START|STOP to START|STOP SLAVE 2002-10-24 17:46:14 -06:00
rpl_redirect.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl_replicate_do-slave.opt Small improvement to alloc_root 2002-11-16 20:19:10 +02:00
rpl_replicate_do.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl_rotate_logs-master.opt Added testing of temporary tables with replication 2002-08-23 21:41:27 +03:00
rpl_rotate_logs-slave-master-info.opt Added testing of temporary tables with replication 2002-08-23 21:41:27 +03:00
rpl_rotate_logs-slave.sh merge with 3.23 2002-08-24 02:10:49 +03:00
rpl_rotate_logs.test Merge with 4.0.11 2003-02-04 21:52:14 +02:00
rpl_skip_error-slave.opt
rpl_skip_error.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
rpl_sporadic_master-master.opt
rpl_sporadic_master.test altered syntax from SLAVE START|STOP to START|STOP SLAVE 2002-10-24 17:46:14 -06:00
rpl_temporary.test Replication: Optimize away string.append 2003-01-17 16:39:29 +04:00
rpl_user_variables.test Fixed problem when connecting to user without a password. 2003-02-14 11:47:41 +02:00
sel000033.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
sel000100.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
select.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
select_found.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
select_safe.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
show_check.test Merge with 4.0 to get fix for MIN/MAX 2003-02-07 16:38:37 +02:00
sp.test Most of the groundwork for sprint task 729 (implement FUNCTIONs). 2003-02-21 17:37:05 +01:00
sql_mode.test Added support sql_mode, which can be used to produce various outputs 2003-01-16 02:04:50 +02:00
status.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
subselect.test Merging 4.1 into 5.0 2003-02-18 15:05:35 +01:00
symlink.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
tablelock.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
temp_table.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
truncate.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
type_blob.test Merge with 4.0.11 tree to get latest bug fixes 2003-02-17 05:43:37 +02:00
type_date.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
type_datetime.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
type_decimal.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
type_enum.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
type_float.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
type_ranges.test Fixed a lot of wrong memory references as reported by valgrind 2003-02-12 21:55:37 +02:00
type_set.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
type_time.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
type_timestamp.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
type_uint.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
type_year.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
union.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
update.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
user_var.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
varbinary.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
variables-master.opt New SET syntax & system variables. 2002-07-23 18:31:22 +03:00
variables.test Changed mysql-test to print warnings for not existing table to DROP TABLE 2003-01-06 01:48:59 +02:00
warnings.test Simple misc cases - warnings 2003-01-07 18:59:08 -08:00