Bug #16415 Events: event names are case sensitive
Submitted: 12 Jan 2006 5:05 Modified: 27 Mar 2006 16:54
Reporter: Peter Gulutzan
Status: Closed
Category:Server: SP Severity:S3 (Non-critical)
Version:5.1.6-alpha-debug OS:Linux (linux)
Assigned to: Andrey Hristov Target Version:

[12 Jan 2006 5:05] Peter Gulutzan
Description:
As with procedure and trigger names, event names should
be case insensitive. That is, if I look for event AAA, I
should find event aaa.

How to repeat:
mysql> create event N on schedule every 1 second do set @a = 5;
Query OK, 1 row affected (0.00 sec)

mysql> create event n on schedule every 1 second do set @a = 5;
Query OK, 1 row affected (0.00 sec)
[12 Jan 2006 9:04] Aleksey Kishkin
mysql> create event N on schedule every 1 second do set @a = 5;
Query OK, 1 row affected (0.00 sec)

mysql> create event n on schedule every 1 second do set @a = 5;
Query OK, 1 row affected (0.00 sec)
[7 Mar 2006 19:33] Bugs System
A patch for this bug has been committed. After review, it may
be pushed to the relevant source trees for release in the next
version. You can access the patch from:

  http://lists.mysql.com/commits/3549
[24 Mar 2006 16:30] Per-Erik Martin
Ok to push, after some minor fixes (in email).
[24 Mar 2006 17:41] Bugs System
A patch for this bug has been committed. After review, it may
be pushed to the relevant source trees for release in the next
version. You can access the patch from:

  http://lists.mysql.com/commits/4130
[24 Mar 2006 17:46] Bugs System
A patch for this bug has been committed. After review, it may
be pushed to the relevant source trees for release in the next
version. You can access the patch from:

  http://lists.mysql.com/commits/4131
[27 Mar 2006 10:26] Andrey Hristov
Fixed in 5.1.8

It was possible to create two events which differ only in the register but case
insensitive compared being the same.
[27 Mar 2006 16:54] Jon Stephens
Thank you for your bug report. This issue has been committed to our
source repository of that product and will be incorporated into the
next release.

If necessary, you can access the source repository and build the latest
available version, including the bugfix, yourself. More information 
about accessing the source trees is available at
    http://www.mysql.com/doc/en/Installing_source_tree.html

Additional info:

Documented in 5.1.8 changelog. Closed.