Re: [pgadmin-support] It takes a long time for pgAdmin to retrieve database schema details

2010-07-27 Thread Guillaume Lelarge
Le 28/07/2010 03:20, Amber a écrit : > [...] > You can download and install Greenplum Single Node Edition which is freely > available from Greenplum, you can get 3.3.6.1 from > http://www.greenplum.com/database/server-downloads/ > Well, I'll certainly do when I'll be interested to give a look at

Re: [pgadmin-support] It takes a long time for pgAdmin to retrieve database schema details

2010-07-27 Thread Amber
Hi You can download and install Greenplum Single Node Edition which is freely available from Greenplum, you can get 3.3.6.1 from http://www.greenplum.com/database/server-downloads/ Xiaobo Gu

Re: [pgadmin-support] Bug with exceptionally long values.

2010-07-27 Thread Guillaume Lelarge
Le 27/07/2010 22:26, Jeff Adams a écrit : > The bug is definitely a wxWidgets bug, and exists both in 2.8.11 and 2.9.1. > I was able to reproduce it in their "grid" sample. > > I submitted a bug to the wxWidgets project: > > http://trac.wxwidgets.org/ticket/12276 > > Do you think pgAdmin should

Re: [pgadmin-support] Bug with exceptionally long values.

2010-07-27 Thread Jeff Adams
The bug is definitely a wxWidgets bug, and exists both in 2.8.11 and 2.9.1. I was able to reproduce it in their "grid" sample. I submitted a bug to the wxWidgets project: http://trac.wxwidgets.org/ticket/12276 Do you think pgAdmin should implement some sort of temporary fix in the meanwhile? Th

Re: [pgadmin-support] Bug with exceptionally long values.

2010-07-27 Thread Guillaume Lelarge
Le 27/07/2010 21:01, Jeff Adams a écrit : > I'm attempting to get a wxGrid sample working so I can test it. > You need to compile wxWidgets code for that. Make sure you get 2.8 branch. We don't support 2.9 right now. > One option simpler than changing grid components would be changing something

Re: [pgadmin-support] It takes a long time for pgAdmin to retrieve database schema details

2010-07-27 Thread Guillaume Lelarge
Le 19/07/2010 19:25, Guillaume Lelarge a écrit : > Le 19/07/2010 15:18, 顾小波 a écrit : >> Can you reinstall your Debian/Ubuntu, and install/set default encoding to >> GH18030? And you can use vmware virtual machine technoloyies. >> > > I'll install a VM with this encoding. Should be simpler. >

Re: [pgadmin-support] Bug with exceptionally long values.

2010-07-27 Thread Jeff Adams
I'm attempting to get a wxGrid sample working so I can test it. One option simpler than changing grid components would be changing something about the cell (for example, a really ugly option would be changing the background color) whenever you set data in excess of 65535 characters on windows...

Re: [pgadmin-support] Bug with exceptionally long values.

2010-07-27 Thread Guillaume Lelarge
Le 27/07/2010 19:31, Jeff Adams a écrit : > Correct, it's the "looking empty" that I'm suggesting is a bug. > Works for me on Linux. It could be with the wxGrid on specific platforms. Switching to another grid component would be quite a work. -- Guillaume http://www.postgresql.fr http://dal

Re: [pgadmin-support] Bug with exceptionally long values.

2010-07-27 Thread Jeff Adams
Correct, it's the "looking empty" that I'm suggesting is a bug. On Tue, Jul 27, 2010 at 1:27 PM, Michael Shapiro wrote: > It looks blank, but its contents are actually there. ctrl-a, ctrl-c in the > column selects what you''d expect to see. > The behavior happens a 65536 in the lpad > > select lp

Re: [pgadmin-support] Bug with exceptionally long values.

2010-07-27 Thread Michael Shapiro
It looks blank, but its contents are actually there. ctrl-a, ctrl-c in the column selects what you''d expect to see. The behavior happens a 65536 in the lpad select lpad('test', 65535, 't')-- looks OK select lpad('test', 65536, 't')-- looks empty (but really isn't) On Tue, Jul 27, 2010

Re: [pgadmin-support] Bug with exceptionally long values.

2010-07-27 Thread Peter Geoghegan
Here's Jeff's test case. I am not immediately able to check it: On 27 July 2010 17:54, Jeff Adams wrote: > Piece o' cake: > > select lpad('test', 75, 't') as test75, lpad('test', 750, 't') as test750, > lpad('test', 7500, 't') as test7500, lpad('test', 75000, 't') as test75000, > lpad('test', 100

Re: [pgadmin-support] Bug with exceptionally long values.

2010-07-27 Thread Peter Geoghegan
On 26 July 2010 17:50, Jeff Adams wrote: > Sorry one mistake, I copied the value by selecting the cell and using > ctrl-c, there is no right-click copy. Hi Jeff, Are you sure that the cell doesn't start with an EOL that prevent you from seeing the string without resizing it, or without copying i