mysql doesn't like binary blobs
authorAleš Křenek <ljocha@ics.muni.cz>
Wed, 26 Mar 2008 14:09:35 +0000 (14:09 +0000)
committerAleš Křenek <ljocha@ics.muni.cz>
Wed, 26 Mar 2008 14:09:35 +0000 (14:09 +0000)
org.glite.lb.server/config/glite-lb-dbsetup.sql
org.glite.lb.server/config/glite-lb-migrate_db2transactions

index e0c315a..5fe8f99 100644 (file)
@@ -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;
index 299e323..11ca040 100644 (file)
@@ -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"