CVS Commit by andreas: fix typo in pgDomain
require($_SERVER['DOCUMENT_ROOT']."/includes/top_config.php");
?>
CVS Commit by andreas: fix typo in pgDomain
Log Message:
-----------
fix typo in pgDomain
Tags:
----
REL-1_2_0_PATCHES
Modified Files:
--------------
pgadmin3/src/schema:
pgDomain.cpp (r1.23 -> r1.23.2.1)
Index: pgDomain.cpp
===================================================================
RCS file: /projects/pgadmin3/src/schema/pgDomain.cpp,v
retrieving revision 1.23
retrieving revision 1.23.2.1
diff -Lsrc/schema/pgDomain.cpp -Lsrc/schema/pgDomain.cpp -u -w -r1.23 -r1.23.2.1
--- src/schema/pgDomain.cpp
+++ src/schema/pgDomain.cpp
@@ -149,7 +149,7 @@
domain->iSetOid(domains->GetOid(wxT("oid")));
domain->iSetOwner(domains->GetVal(wxT("domainowner")));
- domain->iSetBasetype(domains->GetVal(wxT("basetype")));
+ domain->iSetBasetype(domains->GetOid(wxT("basetype")));
domain->iSetBasetypeOid(domains->GetBool(wxT("typbasetype")));
domain->iSetComment(domains->GetVal(wxT("description")));
long typmod=domains->GetLong(wxT("typtypmod"));
Home |
Main Index |
Thread Index