Обсуждение: SVN Commit by andreas: r4284 - trunk/pgadmin3/src/db

Поиск
Список
Период
Сортировка

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

От
svn@pgadmin.org
Дата:
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")