Bug #10827 | Lost connection when selecting variable value | ||
---|---|---|---|
Submitted: | 24 May 2005 13:14 | Modified: | 24 May 2005 14:58 |
Reporter: | Disha | Email Updates: | |
Status: | Duplicate | Impact on me: | |
Category: | MySQL Server | Severity: | S1 (Critical) |
Version: | 5.0.5-beta-nt | OS: | Windows (Windows xp) |
Assigned to: | CPU Architecture: | Any |
[24 May 2005 13:14]
Disha
[24 May 2005 14:14]
MySQL Verification Team
I was unable to verify your test case because currently there is the below issue: C:\mysql\bin>mysql -uroot test Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 4 to server version: 5.0.7-beta-nt Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> delimiter // mysql> drop function if exists fn1_05_4012011_13// Query OK, 0 rows affected, 1 warning (0.02 sec) mysql> drop procedure if exists sp1_05_4012011_13// Query OK, 0 rows affected, 1 warning (0.00 sec) mysql> Create function fn1_05_4012011_13(F1 INT) returns INT -> Begin -> Declare x int; -> Declare y int; -> set x = F1; -> set y = x + 4294967294; -> select y; -> return y; -> End// ERROR 1415 (0A000): Not allowed to return a result set from a function mysql>
[24 May 2005 14:58]
Per-Erik Martin
This was a duplicate of BUG#8408 et al. It's not possible to return a result set ("select y") from a function, so it has been disallowed.