[pgadmin-hackers] Greenplum documents

2009-03-11 Thread Quan Zongliang
Hi, Chuck Can you give me full documents of the Greenplum database? I counld not find them in greenplum.com And somewhere has Chinese documents? Regards. --- Quan Zongliang quanzongli...@gmail.com CIT Japan: http://www.cit.co.jp CIT China: http://www

[pgadmin-hackers] SVN Commit by dpage: r7682 - in trunk/pgadmin3/pgadmin: frm schema

2009-03-11 Thread svn
Author: dpage Date: 2009-03-11 21:04:39 + (Wed, 11 Mar 2009) New Revision: 7682 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7682&view=rev Log: Add a hack to ensure that the wxBusyInfo displays on GTK Modified: trunk/pgadmin3/pgadmin/frm/frmMain.cpp trunk/pgadmi

Re: [pgadmin-hackers] [pgScript patch] Improved test output + make use of pgAdmin UI for error output

2009-03-11 Thread Dave Page
On Wed, Mar 11, 2009 at 7:23 PM, Mickael Deloison wrote: > Please refer to my previous message for the explanation of this syntax > error. A very simple correction is possible but I need the third patch > on my first email to be applied because the correction is on that part > of code (the idea i

[pgadmin-hackers] SVN Commit by dpage: r7681 - trunk/pgadmin3/pgadmin/frm

2009-03-11 Thread svn
Author: dpage Date: 2009-03-11 19:51:01 + (Wed, 11 Mar 2009) New Revision: 7681 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7681&view=rev Log: Ensure the pgScript parser can correctly identify a comment on the end of the script, per Mickael Deloison. Modified: tr

Re: [pgadmin-hackers] [pgScript patch] Improved test output + make use of pgAdmin UI for error output

2009-03-11 Thread Dave Page
On Wed, Mar 11, 2009 at 7:11 PM, Mickael Deloison wrote: > 2009/3/11 Dave Page : >> I would expect an error message from the first query, and nicely >> formatted errors from the second and third tests (though actually I >> wouldn't expect an error at all from the docs example). FWIW, other >> (non

[pgadmin-hackers] SVN Commit by dpage: r7680 - trunk/pgadmin3/pgadmin/pgscript/utilities

2009-03-11 Thread svn
Author: dpage Date: 2009-03-11 19:44:00 + (Wed, 11 Mar 2009) New Revision: 7680 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7680&view=rev Log: Improve pgScript message formatting [Mickael Deloison] Modified: trunk/pgadmin3/pgadmin/pgscript/utilities/pgsDriver.cpp

Re: [pgadmin-hackers] [pgScript patch] Improved test output + make use of pgAdmin UI for error output

2009-03-11 Thread Dave Page
On Wed, Mar 11, 2009 at 5:51 PM, Mickael Deloison wrote: > 2009/3/11 Dave Page : >> Testing on Windows, it fails the first tests I try :-( >> >> select * from missing_table >> >> I get no error message at all. If I enter garbage, I just get the following: >> >> 1.0: syntax error, unexpected charac

[pgadmin-hackers] SVN Commit by dpage: r7679 - in trunk/pgadmin3/pgadmin: frm include/pgscript include/pgscript/utilities pgscript pgscript/statements pgscript/utilities

2009-03-11 Thread svn
Author: dpage Date: 2009-03-11 19:35:51 + (Wed, 11 Mar 2009) New Revision: 7679 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7679&view=rev Log: Enable pgScript to use the pgAdmin UI for error output: when an error occurs while interpreting a script then the line where t

Re: [pgadmin-hackers] [pgScript patch] Improved test output + make use of pgAdmin UI for error output

2009-03-11 Thread Mickael Deloison
2009/3/11 Dave Page : > If I enter this example from the docs: > > SET @A = INTEGER(100, 200); > PRINT @A; -- Prints an integer between 100 and 200 > PRINT @A; -- Prints another integer between 100 and 200 > > I get: > > 3.9-10: syntax error, unexpected '-' Please refer to my previous message for

Re: [pgadmin-hackers] [pgScript patch] Improved test output + make use of pgAdmin UI for error output

2009-03-11 Thread Mickael Deloison
2009/3/11 Dave Page : > I would expect an error message from the first query, and nicely > formatted errors from the second and third tests (though actually I > wouldn't expect an error at all from the docs example). FWIW, other > (non-erroring) examples work fine: Attached to this email, a patch

[pgadmin-hackers] SVN Commit by guillaume: r7678 - trunk/pgadmin3/i18n/fr_FR

2009-03-11 Thread svn
Author: guillaume Date: 2009-03-11 18:27:43 + (Wed, 11 Mar 2009) New Revision: 7678 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7678&view=rev Log: Update french translation. Modified: trunk/pgadmin3/i18n/fr_FR/pgadmin3.mo trunk/pgadmin3/i18n/fr_FR/pgadmin3.po

Re: [pgadmin-hackers] [pgScript patch] Improved test output + make use of pgAdmin UI for error output

2009-03-11 Thread Mickael Deloison
2009/3/11 Dave Page : > Testing on Windows, it fails the first tests I try :-( > > select * from missing_table > > I get no error message at all. If I enter garbage, I just get the following: > > 1.0: syntax error, unexpected character This is normal: you do not have anything in the output because

Re: [pgadmin-hackers] pgadmin 1.8.4 freeze ?

2009-03-11 Thread Dave Page
On Wed, Mar 11, 2009 at 12:02 PM, Levente Torok wrote: > Hi Dave, > > I compiled 1.8.4 version on my ubuntu > and have the same issue with either freeze or very very slow startup. > here is the `strace` below. > Could it be caused by the fact that the registered servers are gone offline? It can -

Re: [pgadmin-hackers] [pgScript patch] Improved test output + make use of pgAdmin UI for error output

2009-03-11 Thread Dave Page
Hmm, I see similar results if I revert the patch. I wonder if the one Magnus applied broke something? On Wed, Mar 11, 2009 at 5:24 PM, Dave Page wrote: > Hi. > > On Wed, Mar 11, 2009 at 1:52 PM, Mickael Deloison wrote: >> Hi, >> >> Attached to this email, three patches for pgScript: >> 1. The fi

Re: [pgadmin-hackers] [pgScript patch] Improved test output + make use of pgAdmin UI for error output

2009-03-11 Thread Dave Page
Hi. On Wed, Mar 11, 2009 at 1:52 PM, Mickael Deloison wrote: > Hi, > > Attached to this email, three patches for pgScript: > 1. The first one improves the output of the pgScript integration test > suite: only a bash file has been modified. Applied. > 2. The second one corrects an extra space in

[pgadmin-hackers] SVN Commit by dpage: r7677 - trunk/pgadmin3/pgadmin/pgscript/expressions

2009-03-11 Thread svn
Author: dpage Date: 2009-03-11 16:59:00 + (Wed, 11 Mar 2009) New Revision: 7677 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7677&view=rev Log: Remove an extra space [Mickael Deloison] Modified: trunk/pgadmin3/pgadmin/pgscript/expressions/pgsExecute.cpp -- Sent v

[pgadmin-hackers] SVN Commit by dpage: r7676 - trunk/pgadmin3/xtra/pgscript/file/test

2009-03-11 Thread svn
Author: dpage Date: 2009-03-11 16:57:06 + (Wed, 11 Mar 2009) New Revision: 7676 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7676&view=rev Log: Improve the output of the pgScript integration test suite [Mickael Deloison] Modified: trunk/pgadmin3/xtra/pgscript/file/

[pgadmin-hackers] SVN Commit by dpage: r7675 - trunk/pgadmin3/docs/en_US

2009-03-11 Thread svn
Author: dpage Date: 2009-03-11 16:41:46 + (Wed, 11 Mar 2009) New Revision: 7675 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7675&view=rev Log: Update for new options. Modified: trunk/pgadmin3/docs/en_US/options-tab1.html -- Sent via pgadmin-hackers mailing list

[pgadmin-hackers] SVN Commit by dpage: r7674 - trunk/pgadmin3/docs/en_US/images

2009-03-11 Thread svn
Author: dpage Date: 2009-03-11 16:39:02 + (Wed, 11 Mar 2009) New Revision: 7674 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7674&view=rev Log: Image updates Modified: trunk/pgadmin3/docs/en_US/images/options-display.png trunk/pgadmin3/docs/en_US/images/options

Re: [pgadmin-hackers] Patch: Crash on linux-x64

2009-03-11 Thread Dave Page
On Wed, Mar 11, 2009 at 10:15 AM, Ashesh Vashi wrote: > Hi Dave, > > Dave Page wrote: > > Couple of thoughts about the patch... > > We should use #ifdef __WXGTK__ not __LINUX__ as we also support *BSD > and Solaris, *but*, although the bug only occurs on Linux, > > ok > > Should we just use this s

[pgadmin-hackers] SVN Commit by dpage: r7673 - in trunk/pgadmin3/pgadmin: ctl include/ctl

2009-03-11 Thread svn
Author: dpage Date: 2009-03-11 15:23:32 + (Wed, 11 Mar 2009) New Revision: 7673 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7673&view=rev Log: Re-implement the treeview 'first letter search' that could crash if the users pressed 'd' and it found a dummy node. [Ashesh

[pgadmin-hackers] [pgScript patch] Improved test output + make use of pgAdmin UI for error output

2009-03-11 Thread Mickael Deloison
Hi, Attached to this email, three patches for pgScript: 1. The first one improves the output of the pgScript integration test suite: only a bash file has been modified. 2. The second one corrects an extra space introduced in the output from the previous patch. 3. The third one enables pgScript to

[pgadmin-hackers] SVN Commit by guillaume: r7672 - trunk/pgadmin3/i18n/it_IT

2009-03-11 Thread svn
Author: guillaume Date: 2009-03-11 13:06:30 + (Wed, 11 Mar 2009) New Revision: 7672 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7672&view=rev Log: Update italian's translation, per Giuseppe Sacco. Modified: trunk/pgadmin3/i18n/it_IT/pgadmin3.mo trunk/pgadmin3/

[pgadmin-hackers] pgadmin 1.8.4 freeze ?

2009-03-11 Thread Levente Torok
Hi Dave, I compiled 1.8.4 version on my ubuntu and have the same issue with either freeze or very very slow startup. here is the `strace` below. Could it be caused by the fact that the registered servers are gone offline? ODBC connection would be interesting since there is no considerable ODBC d

Re: [pgadmin-hackers] 1.10 beta 1

2009-03-11 Thread Guillaume Lelarge
Ashesh Vashi a écrit : > > > Dave Page wrote: >> On Tue, Mar 10, 2009 at 9:30 PM, Guillaume Lelarge >> wrote: >>> Dave Page a écrit : I intend to build pgAdmin 1.10 beta 1 on Thursday morning. Please get any outstanding changes committed or mailed in ASAP :-) Guillaume; Any p

Re: [pgadmin-hackers] 1.10 beta 1

2009-03-11 Thread Ashesh Vashi
Dave Page wrote: On Tue, Mar 10, 2009 at 9:30 PM, Guillaume Lelarge wrote: Dave Page a écrit : I intend to build pgAdmin 1.10 beta 1 on Thursday morning. Please get any outstanding changes committed or mailed in ASAP :-) Guillaume; Any progress on that dependencies issue? Unfortunately, n

Re: [pgadmin-hackers] Patch: Crash on linux-x64

2009-03-11 Thread Ashesh Vashi
Hi Dave, Dave Page wrote: Couple of thoughts about the patch... We should use #ifdef __WXGTK__ not __LINUX__ as we also support *BSD and Solaris, *but*, although the bug only occurs on Linux, ok Should we just use this search code on all platforms for consistency and future enhancement? I th

Re: [pgadmin-hackers] SVN Commit by dpage: r7607 - trunk/pgadmin3/pgadmin/ui

2009-03-11 Thread Guillaume Lelarge
Dave Page a écrit : > On Tue, Mar 10, 2009 at 11:18 PM, Dave Page wrote: > >>> Will they get back to their original height before beta1? because 280 is >>> way too small on GTK. On many dialogs, I can hide some components >>> (comments' textbox and "use replication" checkbox, but also table's >>>

Re: [pgadmin-hackers] SVN Commit by dpage: r7607 - trunk/pgadmin3/pgadmin/ui

2009-03-11 Thread Dave Page
On Tue, Mar 10, 2009 at 11:18 PM, Dave Page wrote: >> Will they get back to their original height before beta1? because 280 is >> way too small on GTK. On many dialogs, I can hide some components >> (comments' textbox and "use replication" checkbox, but also table's >> properties with the autovac

Re: [pgadmin-hackers] 1.10 beta 1

2009-03-11 Thread Dave Page
On Tue, Mar 10, 2009 at 9:30 PM, Guillaume Lelarge wrote: > Dave Page a écrit : >> I intend to build pgAdmin 1.10 beta 1 on Thursday morning. Please get >> any outstanding changes committed or mailed in ASAP :-) >> >> Guillaume; Any progress on that dependencies issue? >> > > Unfortunately, no. I

Re: [pgadmin-hackers] 1.10 beta 1

2009-03-11 Thread Dave Page
On Tue, Mar 10, 2009 at 10:56 PM, Mickael Deloison wrote: > 2009/3/10 Dave Page : >> I intend to build pgAdmin 1.10 beta 1 on Thursday morning. Please get >> any outstanding changes committed or mailed in ASAP :-) >> >> Guillaume; Any progress on that dependencies issue? >> >> Ashesh; Any progress

Re: [pgadmin-hackers] Patch: Crash on linux-x64

2009-03-11 Thread Dave Page
On Wed, Mar 11, 2009 at 9:11 AM, Ashesh Vashi wrote: > Hi Team, > > We found a bug on linux-x64 machines. > * Select any of the catalog table/view, and then Press 'D' or 'd', it > crashes with "segment fault" error. > > Our findings are: > * We are creating Dummy Node for catalog tables/views with

Re: [pgadmin-hackers] 1.10 beta 1

2009-03-11 Thread Ashesh Vashi
Hi Dave, Dave Page wrote: I intend to build pgAdmin 1.10 beta 1 on Thursday morning. Please get any outstanding changes committed or mailed in ASAP :-) Guillaume; Any progress on that dependencies issue? Ashesh; Any progress on the treeview crash issue you were looking at? Just sent the patch

[pgadmin-hackers] Patch: Crash on linux-x64

2009-03-11 Thread Ashesh Vashi
Hi Team, We found a bug on linux-x64 machines. * Select any of the catalog table/view, and then Press 'D' or 'd', it crashes with "segment fault" error. Our findings are: * We are creating *Dummy* Node for catalog tables/views with "Dummy", which is not visible. (ctl/ctlTree.cpp - line# * If

Re: [pgadmin-hackers] Over commit?

2009-03-11 Thread Dave Page
On Wed, Mar 11, 2009 at 7:55 AM, Giuseppe Sacco wrote: > Hi hackers, > > #: pgadmin/schema/gpResQueue.cpp:122 > msgid "Over commit?" > msgstr "" > > Could you please explain what this sentence means? It's a Greenplum thing, relating to resource queues which allow you to manage workload in the sys

[pgadmin-hackers] SVN Commit by dpage: r7671 - trunk/pgadmin3/pgadmin/schema

2009-03-11 Thread svn
Author: dpage Date: 2009-03-11 08:44:44 + (Wed, 11 Mar 2009) New Revision: 7671 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7671&view=rev Log: Fix a couple of warnings Modified: trunk/pgadmin3/pgadmin/schema/gpPartition.cpp trunk/pgadmin3/pgadmin/schema/gpResQ

[pgadmin-hackers] SVN Commit by guillaume: r7670 - trunk/pgadmin3

2009-03-11 Thread svn
Author: guillaume Date: 2009-03-11 08:20:13 + (Wed, 11 Mar 2009) New Revision: 7670 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7670&view=rev Log: Update .pot file. Modified: trunk/pgadmin3/pgadmin3.pot -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@

[pgadmin-hackers] SVN Commit by guillaume: r7669 - in trunk/pgadmin3/i18n: af_ZA ar_SA bg_BG ca_ES cs_CZ da_DK de_CH de_DE el_GR es_ES fa_IR fi_FI fr_FR gl_ES gu_IN hi_IN hr_HR hu_HU id_ID is_IS it_IT

2009-03-11 Thread svn
Author: guillaume Date: 2009-03-11 08:10:13 + (Wed, 11 Mar 2009) New Revision: 7669 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7669&view=rev Log: Automatic merge using stringmerge script. Modified: trunk/pgadmin3/i18n/af_ZA/pgadmin3.po trunk/pgadmin3/i18n/ar_S

Re: [pgadmin-hackers] SVN Commit by guillaume: r7667 - trunk/pgadmin3

2009-03-11 Thread Guillaume Lelarge
Hi Giuseppe, Giuseppe Sacco a écrit : > [...] > Il giorno mer, 11/03/2009 alle 06.56 +, s...@pgadmin.org ha scritto: >> Author: guillaume >> >> Date: 2009-03-11 06:56:28 + (Wed, 11 Mar 2009) >> New Revision: 7667 >> Revision summary: >> http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7667

[pgadmin-hackers] SVN Commit by guillaume: r7668 - trunk/pgadmin3/pgadmin/frm

2009-03-11 Thread svn
Author: guillaume Date: 2009-03-11 08:05:17 + (Wed, 11 Mar 2009) New Revision: 7668 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7668&view=rev Log: String fix, by Giuseppe Sacco. Modified: trunk/pgadmin3/pgadmin/frm/frmStatus.cpp -- Sent via pgadmin-hackers mail

[pgadmin-hackers] Over commit?

2009-03-11 Thread Giuseppe Sacco
Hi hackers, #: pgadmin/schema/gpResQueue.cpp:122 msgid "Over commit?" msgstr "" Could you please explain what this sentence means? Thanks, Giuseppe -- Sent via pgadmin-hackers mailing list (pgadmin-hackers@postgresql.org) To make changes to your subscription: http://www.postgresql.org/mailpre

Re: [pgadmin-hackers] SVN Commit by guillaume: r7667 - trunk/pgadmin3

2009-03-11 Thread Giuseppe Sacco
Hi Guillaume, Il giorno mer, 11/03/2009 alle 06.56 +, s...@pgadmin.org ha scritto: > Author: guillaume > > Date: 2009-03-11 06:56:28 + (Wed, 11 Mar 2009) > New Revision: 7667 > Revision summary: > http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=7667&view=rev > Log: > Update pot file. I