Bug #9367 | Stored procedures: client hang after "show warnings" | ||
---|---|---|---|
Submitted: | 23 Mar 2005 20:16 | Modified: | 15 Jul 2005 8:54 |
Reporter: | Peter Gulutzan | Email Updates: | |
Status: | Can't repeat | Impact on me: | |
Category: | MySQL Server | Severity: | S3 (Non-critical) |
Version: | 5.0.3-beta-debug | OS: | Linux (SUSE 9.2) |
Assigned to: | Oleksandr Byelkin | CPU Architecture: | Any |
[23 Mar 2005 20:16]
Peter Gulutzan
[12 Apr 2005 16:31]
Per-Erik Martin
See also the dup. BUG#9771, where "show warnings" causes the same problem.
[15 Jul 2005 8:54]
Oleksandr Byelkin
Thank you for bugreport! I can't repeat this bug any more, it looks like fixed: + create table t1 (s1 int)// + select s1 from t1; + create procedure p1 () begin + declare v int; + declare c cursor for select s1 from t1; + open c; + show warnings; + fetch c into v; select v; end// + s1 + call p1()// + Level Code Message + drop procedure p1// + drop table t1//