Re: [pgadmin-hackers] SET search_path = value

2010-04-19 Thread Guillaume Lelarge
Le 20/04/2010 05:28, Euler Taveira de Oliveira a écrit : > Guillaume Lelarge escreveu: >> pgAdmin shouldn't use quotes on some parameters: search_path, >> temp_tablespaces. Perhaps others. I don't find a way to pick them >> automatically. For example, their vartype are "string". Which is quite >> a

Re: [pgadmin-hackers] SET search_path = value

2010-04-19 Thread Euler Taveira de Oliveira
Guillaume Lelarge escreveu: > pgAdmin shouldn't use quotes on some parameters: search_path, > temp_tablespaces. Perhaps others. I don't find a way to pick them > automatically. For example, their vartype are "string". Which is quite > ambiguous with others "string" parameters like archive_command.

Re: [pgadmin-hackers] SET search_path = value

2010-04-19 Thread Guillaume Lelarge
Le 19/04/2010 04:43, Erwin Brandstetter a écrit : > Hi developers! > > Just created a ticket concerning a minor error in the reverse engineered > SQL code for roles > > Besides the example ... > ALTER ROLE SET search_path = test, public; > --> ALTER DATABASE test SET search_path='test, public

Re: [pgadmin-hackers] pgadmin 1.10.2 crashes on start

2010-04-19 Thread Guillaume Lelarge
Le 19/04/2010 19:24, Erwin Brandstetter a écrit : > On 17.04.2010 08:02, guilla...@lelarge.info wrote: >> Le 17/04/2010 01:02, Erwin Brandstetter a écrit : >> >>> On 17.04.2010 00:16, guilla...@lelarge.info wrote: >>> Le 09/04/2010 16:33, Guillaume Lelarge a écrit : >>

Re: [pgadmin-hackers] pgadmin 1.10.2 crashes on start

2010-04-19 Thread Erwin Brandstetter
On 17.04.2010 08:02, guilla...@lelarge.info wrote: Le 17/04/2010 01:02, Erwin Brandstetter a écrit : On 17.04.2010 00:16, guilla...@lelarge.info wrote: Le 09/04/2010 16:33, Guillaume Lelarge a écrit : (...) Sorry for making you wait so long. Here is the pgAdmin bi

[pgadmin-hackers] SVN Commit by guillaume: r8277 - trunk/pgadmin3/i18n/de_DE

2010-04-19 Thread svn
Author: guillaume Date: 2010-04-19 17:26:18 +0100 (Mon, 19 Apr 2010) New Revision: 8277 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=8277&view=rev Log: Fix for the german translation, per a request from Andreas Scherbaum. Modified: trunk/pgadmin3/i18n/de_DE/pgadmin3.po

[pgadmin-hackers] SVN Commit by guillaume: r8276 - branches/REL-1_10_0_PATCHES/pgadmin3/i18n/de_DE

2010-04-19 Thread svn
Author: guillaume Date: 2010-04-19 17:25:25 +0100 (Mon, 19 Apr 2010) New Revision: 8276 Revision summary: http://svn.pgadmin.org/cgi-bin/viewcvs.cgi/?rev=8276&view=rev Log: Fix for the german translation, per a request from Andreas Scherbaum. Modified: branches/REL-1_10_0_PATCHES/pgadmin3

Re: [pgadmin-hackers] Ticket 3: groups of servers

2010-04-19 Thread Dave Page
On Sat, Apr 17, 2010 at 7:09 PM, Guillaume Lelarge wrote: > What do you want with a right click in a group node? access to the > properties? Same as other nodes - Add xxx etc. It's not that important though. >> Y'know - as I type I can't help thinking that the correct way to do >> this is to con

[pgadmin-hackers] SET search_path = value

2010-04-19 Thread Erwin Brandstetter
Hi developers! Just created a ticket concerning a minor error in the reverse engineered SQL code for roles Besides the example ... ALTER ROLE SET search_path = test, public; --> ALTER DATABASE test SET search_path='test, public';-- quotes are wrong ... there are at least two more occ