From: Aleš Křenek Date: Wed, 26 Mar 2008 14:09:35 +0000 (+0000) Subject: mysql doesn't like binary blobs X-Git-Tag: merge_313_4~24 X-Git-Url: http://scientific.zcu.cz/git/?a=commitdiff_plain;h=34a92d0af99714b9dcbbb6a8fa2cb2e8673c73fe;p=jra1mw.git mysql doesn't like binary blobs --- diff --git a/org.glite.lb.server/config/glite-lb-dbsetup.sql b/org.glite.lb.server/config/glite-lb-dbsetup.sql index e0c315a..5fe8f99 100644 --- a/org.glite.lb.server/config/glite-lb-dbsetup.sql +++ b/org.glite.lb.server/config/glite-lb-dbsetup.sql @@ -45,7 +45,7 @@ create table events ( create table events_flesh ( jobid char(32) binary not null, event int not null, - ulm mediumblob binary not null, + ulm mediumblob not null, primary key (jobid,event) ) engine=innodb; diff --git a/org.glite.lb.server/config/glite-lb-migrate_db2transactions b/org.glite.lb.server/config/glite-lb-migrate_db2transactions index 299e323..11ca040 100644 --- a/org.glite.lb.server/config/glite-lb-migrate_db2transactions +++ b/org.glite.lb.server/config/glite-lb-migrate_db2transactions @@ -97,7 +97,7 @@ mysql -u lbserver $DB_NAME -e "\ create table events_flesh (\ jobid char(32) binary not null,\ event int not null,\ - ulm mediumblob binary not null,\ + ulm mediumblob not null,\ \ primary key (jobid,event)\ ) engine=innodb"