diff options
author | unknown <pem@mysql.com> | 2004-06-14 12:39:37 +0200 |
---|---|---|
committer | unknown <pem@mysql.com> | 2004-06-14 12:39:37 +0200 |
commit | 83703fcc16a056b2bc4cdef31ae3ddc788761d71 (patch) | |
tree | 7e7011a1b7d7a892ee5f61778124959f30c82335 /mysql-test/r/sp.result | |
parent | 8640403f70a56f101f464fcd100d4d0ba93e7ed5 (diff) | |
parent | 6fd6652be2a05f5a91beac2156658689b22c42d6 (diff) | |
download | mariadb-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.result | 12 |
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) |