Bug #13210 | create function crashes server | ||
---|---|---|---|
Submitted: | 15 Sep 2005 2:41 | Modified: | 15 Sep 2005 3:57 |
Reporter: | dave mausner | Email Updates: | |
Status: | Duplicate | Impact on me: | |
Category: | MySQL Server | Severity: | S2 (Serious) |
Version: | 5.0.12-nt | OS: | Windows (win 2000) |
Assigned to: | Assigned Account | CPU Architecture: | Any |
[15 Sep 2005 2:41]
dave mausner
[15 Sep 2005 3:04]
dave mausner
bug 12824 is similar. but where is the script mentioned there? it speaks of updating the system tables.
[15 Sep 2005 3:57]
MySQL Verification Team
Duplicate as bug: http://bugs.mysql.com/bug.php?id=12820 :\mysql\bin>mysql -uroot test Welcome to the MySQL monitor. Commands end with ; or \g. Your MySQL connection id is 1 to server version: 5.0.12-beta-nt Type 'help;' or '\h' for help. Type '\c' to clear the buffer. mysql> delimiter // mysql> create function xyz(p1 int) returns int -> return 2*p1; -> // Query OK, 0 rows affected (0.19 sec) mysql> select xyz(4)// +--------+ | xyz(4) | +--------+ | 8 | +--------+ 1 row in set (0.06 sec)