Pgadmin data output string disappear when reach 3278 length

From: Alex Bozhenko <alexbozhenko(at)gmail(dot)com>
To: pgadmin-support(at)postgresql(dot)org
Subject: Pgadmin data output string disappear when reach 3278 length
Date: 2012-10-03 13:32:16
Message-ID: CAC-xioKFy=Wkzo8umzp+hFs8=OJghirNmoNdcFfXm35gyHm4sw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-support

- Ver 1.16.0(Sep 7 2012; rev REL-1_16_0)
- Windows XP Pro, SP3

- Steps required to reproduce the problem:

Execute
select array_agg('M'::TEXT)
from (select generate_series(1,1637)) as atable;

So we get string {M,M ... ,M} *3276 *length. It's correctly displaying at
data output pane.

Execute
select array_agg('M'::TEXT)
from (select generate_series(1,1638)) as atable;
Data output is empty. But if we will copy value from data output and paste
it anywhere else, we will get string {M,M ... ,M} *3278 *length.

Is it a bug or a known restriction?

P.S: sorry for poor English.

Responses

Browse pgadmin-support by date

  From Date Subject
Next Message Guillaume Lelarge 2012-10-07 11:50:29 Re: pgadmin crash - editing function body
Previous Message Michal Kozusznik 2012-10-03 12:50:06 Re: pgadmin crash - editing function body