diff -ur globus_rls_server-4.2.orig/db.h globus_rls_server-4.2/db.h --- globus_rls_server-4.2.orig/db.h 2005-04-18 22:56:46.000000000 +0200 +++ globus_rls_server-4.2/db.h 2007-03-08 09:03:48.000000000 +0100 @@ -13,7 +13,7 @@ * Should be as large as longest string stored in the DB that's returned * by a query (see db schema files), plus one for terminating null byte. */ -#define MAXDBSTR (250+1) +#define MAXDBSTR (500+1) typedef globus_bool_t (*db_str1_callback_t) ( void *a, diff -ur globus_rls_server-4.2.orig/test/test.sql globus_rls_server-4.2/test/test.sql --- globus_rls_server-4.2.orig/test/test.sql 2003-09-10 08:57:58.000000000 +0200 +++ globus_rls_server-4.2/test/test.sql 2007-03-08 09:04:05.000000000 +0100 @@ -5,7 +5,7 @@ create table t_lfn ( id int not null auto_increment, - name varchar(250) not null, + name varchar(500) not null, ref int not null default 0, primary key (id), @@ -15,7 +15,7 @@ create table t_pfn ( id int not null auto_increment, - name varchar(250) not null, + name varchar(500) not null, ref int not null default 0, primary key (id), @@ -34,7 +34,7 @@ create table t_rli ( id int not null auto_increment, flags int not null default 0, - name varchar(250) not null, + name varchar(500) not null, primary key(id), unique(name) @@ -43,7 +43,7 @@ create table t_rlipartition ( rli_id int not null references t_rli(id), - pattern varchar(250) not null, + pattern varchar(500) not null, primary key(rli_id, pattern) ) type = innodb; @@ -51,7 +51,7 @@ create table t_attribute ( id int not null auto_increment, - name varchar(250) not null, + name varchar(500) not null, objtype int not null, type int not null, @@ -96,7 +96,7 @@ create table t_str_attr ( obj_id int not null, attr_id int not null references t_attribute(id), - value varchar(250) not null, + value varchar(500) not null, unique(obj_id, attr_id) ) type = innodb; @@ -112,7 +112,7 @@ create table t_lfn ( id int not null auto_increment, - name varchar(250) not null, + name varchar(500) not null, ref int not null default 0, primary key (id), @@ -122,7 +122,7 @@ create table t_lrc ( id int not null auto_increment, - name varchar(250) not null, + name varchar(500) not null, ref int not null default 0, primary key (id), @@ -132,7 +132,7 @@ create table t_sender ( id int not null auto_increment, - name varchar(250) not null, + name varchar(500) not null, ref int not null default 0, primary key (id), @@ -155,7 +155,7 @@ create table t_rli ( id int not null auto_increment, flags int not null default 0, - name varchar(250) not null, + name varchar(500) not null, primary key(id), unique(name) @@ -164,7 +164,7 @@ create table t_rlipartition ( rli_id int not null references t_rli(id), - pattern varchar(250) not null, + pattern varchar(500) not null, primary key(rli_id, pattern) ) type = innodb;