Bug #16415 Events: event names are case sensitive
Submitted: 12 Jan 2006 4:05 Modified: 27 Mar 2006 14:54
Reporter: Peter Gulutzan Email Updates:
Status: Closed Impact on me:
None 
Category:MySQL Server: Stored Routines Severity:S3 (Non-critical)
Version:5.1.6-alpha-debug OS:Linux (linux)
Assigned to: Andrey Hristov CPU Architecture:Any

[12 Jan 2006 4: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 8: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 18: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 15:30] Per-Erik Martin
Ok to push, after some minor fixes (in email).
[24 Mar 2006 16: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 16: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 8: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 14: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.