diff options
author | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2008-10-15 22:50:56 -0300 |
---|---|---|
committer | Davi Arnaut <Davi.Arnaut@Sun.COM> | 2008-10-15 22:50:56 -0300 |
commit | 65253483688b7e9f199cf20299fa1febd264cf5a (patch) | |
tree | c3cab179ea83ff8c07c7ff9cf4dedecb061df731 /mysql-test/r/sp.result | |
parent | e6fa9496f53503cd3f93d449f2a1d2b6047b7ac4 (diff) | |
parent | 3ad228d7fba6fa2e5b98569f798583b8f8b90db9 (diff) | |
download | mariadb-git-65253483688b7e9f199cf20299fa1febd264cf5a.tar.gz |
Merge mysql-5.0-bugteam into mysql-5.1-bugteam.
Diffstat (limited to 'mysql-test/r/sp.result')
-rw-r--r-- | mysql-test/r/sp.result | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/r/sp.result b/mysql-test/r/sp.result index 651f0b235d5..4052cd58c0f 100644 --- a/mysql-test/r/sp.result +++ b/mysql-test/r/sp.result @@ -6846,6 +6846,19 @@ select substr(`str`, `pos`+ 1 ) into `str`; end $ call `p2`('s s s s s s'); drop procedure `p2`; +drop table if exists t1; +drop procedure if exists p1; +create procedure p1() begin select * from t1; end$ +call p1$ +ERROR 42S02: Table 'test.t1' doesn't exist +create table t1 (a integer)$ +call p1$ +a +alter table t1 add b integer; +call p1$ +a +drop table t1; +drop procedure p1; # ------------------------------------------------------------------ # -- End of 5.0 tests # ------------------------------------------------------------------ |