diff options
author | andrey@lmy004. <> | 2006-01-26 20:30:12 +0100 |
---|---|---|
committer | andrey@lmy004. <> | 2006-01-26 20:30:12 +0100 |
commit | 48668d7cc41778ca3de5912bb8867493476ced75 (patch) | |
tree | 2dcd23fdfa0fb12759dbde269edf65a911e081dd /scripts | |
parent | 10e9da5243cbcf79dd48fe8102d8c030b02de61b (diff) | |
download | mariadb-git-48668d7cc41778ca3de5912bb8867493476ced75.tar.gz |
fix for bug #16401 Events: mysql.event.comment is varchar(64)
missed that one in the previos commit
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/mysql_create_system_tables.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/mysql_create_system_tables.sh b/scripts/mysql_create_system_tables.sh index 82dfd55aa32..2822cef18ac 100644 --- a/scripts/mysql_create_system_tables.sh +++ b/scripts/mysql_create_system_tables.sh @@ -791,7 +791,7 @@ then c_ev="$c_ev ends DATETIME default NULL," c_ev="$c_ev status ENUM('ENABLED','DISABLED') NOT NULL default 'ENABLED'," c_ev="$c_ev on_completion ENUM('DROP','PRESERVE') NOT NULL default 'DROP'," - c_ev="$c_ev comment varchar(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL default ''," + c_ev="$c_ev comment char(64) CHARACTER SET utf8 COLLATE utf8_bin NOT NULL default ''," c_ev="$c_ev PRIMARY KEY (db,name)" c_ev="$c_ev ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COMMENT 'Events';" fi |