CVS Commit by andreas: reengineered sql fix
require($_SERVER['DOCUMENT_ROOT']."/includes/top_config.php");
?>
CVS Commit by andreas: reengineered sql fix
Log Message:
-----------
reengineered sql fix
Modified Files:
--------------
pgadmin3/src/schema:
pgTablespace.cpp (r1.2 -> r1.3)
Index: pgTablespace.cpp
===================================================================
RCS file: /projects/pgadmin3/src/schema/pgTablespace.cpp,v
retrieving revision 1.2
retrieving revision 1.3
diff -Lsrc/schema/pgTablespace.cpp -Lsrc/schema/pgTablespace.cpp -u -w -r1.2 -r1.3
--- src/schema/pgTablespace.cpp
+++ src/schema/pgTablespace.cpp
@@ -196,7 +196,7 @@
if (location.IsEmpty())
sql += wxT("-- System Tablespace\n");
else
- sql + wxT("\n\nCREATE TABLESPACE ") + GetQuotedIdentifier()
+ sql += wxT("\n\nCREATE TABLESPACE ") + GetQuotedIdentifier()
+ wxT("\n OWNER ") + qtIdent(GetOwner())
+ wxT("\n LOCATION ")+ qtString(location)
+ wxT(";\n");
Home |
Main Index |
Thread Index