diff options
author | pem@mysql.com <> | 2003-03-20 11:57:05 +0100 |
---|---|---|
committer | pem@mysql.com <> | 2003-03-20 11:57:05 +0100 |
commit | 0d95f36a12bd9a5b9c71cbc6ed2f3f877e9522c0 (patch) | |
tree | 1ff2eb84da87aeb7018e7aa576dfa3a9be0868e1 /mysql-test/r | |
parent | 6822eb5ec0f590f35c8c4ce1020f1a68c1f8904a (diff) | |
download | mariadb-git-0d95f36a12bd9a5b9c71cbc6ed2f3f877e9522c0.tar.gz |
Post post merge fix. Made the broken ip test work again.
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/sp.result | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result index a7d28407385..b188a6ed57d 100644 --- a/mysql-test/r/sp.result +++ b/mysql-test/r/sp.result @@ -484,6 +484,12 @@ set p = p+2; end; end while; end; +call ip(200); +select * from primes where i=45 or i=100 or i=199; +i p +45 211 +100 557 +199 1229 drop table primes; drop procedure opp; drop procedure ip; |