summaryrefslogtreecommitdiff
path: root/mysql-test/r/sp.result
diff options
context:
space:
mode:
authorunknown <pem@mysql.com>2004-06-14 12:39:37 +0200
committerunknown <pem@mysql.com>2004-06-14 12:39:37 +0200
commit83703fcc16a056b2bc4cdef31ae3ddc788761d71 (patch)
tree7e7011a1b7d7a892ee5f61778124959f30c82335 /mysql-test/r/sp.result
parent8640403f70a56f101f464fcd100d4d0ba93e7ed5 (diff)
parent6fd6652be2a05f5a91beac2156658689b22c42d6 (diff)
downloadmariadb-git-83703fcc16a056b2bc4cdef31ae3ddc788761d71.tar.gz
Merge mysql.com:/usr/local/bk/mysql-5.0
into mysql.com:/home/pem/work/mysql-5.0-merge
Diffstat (limited to 'mysql-test/r/sp.result')
-rw-r--r--mysql-test/r/sp.result12
1 files changed, 12 insertions, 0 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result
index 5cdffbdc52c..306b4ba89a8 100644
--- a/mysql-test/r/sp.result
+++ b/mysql-test/r/sp.result
@@ -1360,6 +1360,18 @@ bug3132('Bob')
Hello, Bob!
Hello, Judy!
drop function bug3132|
+create procedure bug3843()
+analyze table t1|
+call bug3843()|
+Table Op Msg_type Msg_text
+test.t1 analyze status OK
+call bug3843()|
+Table Op Msg_type Msg_text
+test.t1 analyze status Table is already up to date
+select 1+2|
+1+2
+3
+drop procedure bug3843|
drop table if exists fac|
create table fac (n int unsigned not null primary key, f bigint unsigned)|
create procedure ifac(n int unsigned)