jobid may be 32 bytes long, not 22
authorMiloš Mulač <mulac@civ.zcu.cz>
Thu, 15 May 2008 09:30:56 +0000 (09:30 +0000)
committerMiloš Mulač <mulac@civ.zcu.cz>
Thu, 15 May 2008 09:30:56 +0000 (09:30 +0000)
org.glite.lb.server/config/glite-lb-dbsetup.sql
org.glite.lb.server/config/glite-lb-migrate_db2transactions

index 6d705ba..1e6ac2c 100644 (file)
@@ -133,7 +133,7 @@ create table notif_jobs (
 ) engine=innodb;
 
 create table zombie_jobs (
-       jobid   varchar(22)     not null,
+       jobid   varchar(32)     not null,
        prefix_id       tinyint unsigned not null,
 
        primary key (jobid)
index 4319b5b..5eef600 100644 (file)
@@ -117,7 +117,7 @@ mysql -u lbserver $DB_NAME -e "ALTER TABLE notif_registrations ADD index(JDL_Vir
 mysql -u lbserver $DB_NAME -e "\
 \
 create table zombie_jobs (\
-        jobid          varchar(22)     not null,\
+        jobid          varchar(32)     not null,\
         prefix_id      tinyint         unsigned not null,\
 \
         primary key (jobid)\