Re: [pgadmin-support] BUG 9.1rc1

2011-08-26 Thread Dave Page
On Fri, Aug 26, 2011 at 5:22 PM, Claudio Oliveira wrote: > Hi, > Use version 8.4 and have no issues with the field type TEXT. > In version 9.1rc1 is limited to 4680 characters. > Test >  create table txt (val text); >  insert into txt values (repeat ('x', 4500)); >  insert into txt values (repeat

[pgadmin-support] BUG 9.1rc1

2011-08-26 Thread Claudio Oliveira
Hi,Use version 8.4 and have no issues with the field type TEXT.In version 9.1rc1 is limited to 4680 characters.Test create table txt (val text); insert into txt values ​​(repeat ('x', 4500)); insert into txt values ​​(repeat ('x', 4685)); select *, length (val) val is null, (val ~ 'x') from txt