summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorandrey@lmy004. <>2006-01-26 20:30:12 +0100
committerandrey@lmy004. <>2006-01-26 20:30:12 +0100
commit48668d7cc41778ca3de5912bb8867493476ced75 (patch)
tree2dcd23fdfa0fb12759dbde269edf65a911e081dd /scripts
parent10e9da5243cbcf79dd48fe8102d8c030b02de61b (diff)
downloadmariadb-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.sh2
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