SVN Commit by andreas: r4284 - trunk/pgadmin3/src/db

From: svn(at)pgadmin(dot)org
To: pgadmin-hackers(at)postgresql(dot)org
Subject: SVN Commit by andreas: r4284 - trunk/pgadmin3/src/db
Date: 2005-06-07 15:56:14
Message-ID: 200506071556.j57FuEbj022631@developer.pgadmin.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Author: andreas
Date: 2005-06-07 16:56:14 +0100 (Tue, 07 Jun 2005)
New Revision: 4284

Modified:
trunk/pgadmin3/src/db/pgConn.cpp
Log:
Fix sys schema quoting

Modified: trunk/pgadmin3/src/db/pgConn.cpp
===================================================================
--- trunk/pgadmin3/src/db/pgConn.cpp 2005-06-07 15:48:36 UTC (rev 4283)
+++ trunk/pgadmin3/src/db/pgConn.cpp 2005-06-07 15:56:14 UTC (rev 4284)
@@ -55,7 +55,7 @@
reservedNamespaces = wxT("'information_schema'");

if (GetIsEdb())
- reservedNamespaces += wxT(", sys");
+ reservedNamespaces += wxT(", 'sys'");

pgSet *set=ExecuteSet(
wxT("SELECT nspname FROM pg_namespace nsp\n")

Browse pgadmin-hackers by date

  From Date Subject
Next Message Andreas Pflug 2005-06-07 15:57:15 Re: sys column error
Previous Message Diego Gil 2005-06-07 15:51:12 sys column error