MySQL Forums
Forum List  »  Stored Procedures

Re: SET using a boolean constant crashes server during CALL
Posted by: Roland Bouman
Date: October 10, 2005 04:36PM

What was your exact statement? It does seem to work for me:

mysql> create procedure crash()
-> begin
-> declare foo boolean;
-> set foo = true;
-> select foo;
-> end;
-> go
Query OK, 0 rows affected (0.00 sec)

mysql> call crash() go
+-----+
| foo |
+-----+
| 1 |
+-----+
1 row in set (0.00 sec)

Query OK, 0 rows affected (0.00 sec)

Options: ReplyQuote


Subject
Views
Written By
Posted
Re: SET using a boolean constant crashes server during CALL
1323
October 10, 2005 04:36PM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.