diff options
author | unknown <pem@mysql.comhem.se> | 2005-03-18 14:33:46 +0100 |
---|---|---|
committer | unknown <pem@mysql.comhem.se> | 2005-03-18 14:33:46 +0100 |
commit | 7e79e70515f8f416df42ad095ab89cca9687b65f (patch) | |
tree | b15c04fd14f6bf38bfe19db5169e4b5e4cc31a91 /mysql-test/t/sp-threads.test | |
parent | 0f58efbd487dd1b82c6dd3b5e60304a168793eea (diff) | |
download | mariadb-git-7e79e70515f8f416df42ad095ab89cca9687b65f.tar.gz |
Did some SP test style changes and added explanatory comments,
and removed a have_innodb.inc inclusion which was left by mistake
in an earlier change.
mysql-test/r/sp_trans.result:
Changed procedure name and delimiter setting to follow the style of the other SP test files.
mysql-test/t/sp-error.test:
Added comment with hint for bug test case style.
mysql-test/t/sp-threads.test:
Added comments, with hint for bug test case style.
mysql-test/t/sp.test:
Removed have_innodb.inc inclusion.
Added comments about different SP test files, table usage and
hint for bug test case style.
mysql-test/t/sp_trans.test:
Changed procedure name and delimiter setting to follow the style of the other SP test files.
Diffstat (limited to 'mysql-test/t/sp-threads.test')
-rw-r--r-- | mysql-test/t/sp-threads.test | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/mysql-test/t/sp-threads.test b/mysql-test/t/sp-threads.test index 27888158f03..0ced60a610f 100644 --- a/mysql-test/t/sp-threads.test +++ b/mysql-test/t/sp-threads.test @@ -1,5 +1,6 @@ # -# Testing stored procedures with multiple connections +# Testing stored procedures with multiple connections, +# except security/privilege tests, they go to sp-security.test # connect (con1root,localhost,root,,); @@ -52,3 +53,12 @@ connection con1root; drop table t1; drop procedure bug4934; + +# +# BUG#NNNN: New bug synopsis +# +#--disable_warnings +#drop procedure if exists bugNNNN; +#--enable_warnings +#create procedure bugNNNN... + |