mirror of
https://github.com/MariaDB/server.git
synced 2025-06-23 19:21:55 +03:00
fix for bug#16415 Events names are case sensitive
This commit is contained in:
@ -775,7 +775,7 @@ if test ! -f $mdata/event.frm
|
||||
then
|
||||
c_ev="$c_ev CREATE TABLE event ("
|
||||
c_ev="$c_ev db char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL default '',"
|
||||
c_ev="$c_ev name char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL default '',"
|
||||
c_ev="$c_ev name char(64) CHARACTER SET utf8 NOT NULL default '',"
|
||||
c_ev="$c_ev body longblob NOT NULL,"
|
||||
c_ev="$c_ev definer char(77) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL default '',"
|
||||
c_ev="$c_ev execute_at DATETIME default NULL,"
|
||||
|
Reference in New Issue
Block a user