Log Message:
-----------
Fix missing schema prefix for casts

Modified Files:
--------------
    pgadmin3/src/include:
        pgCast.h (r1.20 -> r1.21)

Index: pgCast.h
===================================================================
RCS file: /projects/pgadmin3/src/include/pgCast.h,v
retrieving revision 1.20
retrieving revision 1.21
diff -Lsrc/include/pgCast.h -Lsrc/include/pgCast.h -u -w -r1.20 -r1.21
--- src/include/pgCast.h
+++ src/include/pgCast.h
@@ -38,6 +38,10 @@
     void iSetSourceType(const wxString& s) { sourceType=s; }
     wxString GetTargetType() const { return targetType; }
     void iSetTargetType(const wxString& s) { targetType=s; }
+    wxString GetSourceNamespace() const { return sourceNamespace; }
+    void iSetSourceNamespace(const wxString& s) { sourceNamespace=s; }
+    wxString GetTargetNamespace() const { return targetNamespace; }
+    void iSetTargetNamespace(const wxString& s) { targetNamespace=s; }
     OID GetSourceTypeOid() const { return sourceTypeOid; }
     void iSetSourceTypeOid(const OID o) { sourceTypeOid=o; }
     OID GetTargetTypeOid() const { return targetTypeOid; }
@@ -55,7 +59,8 @@
     pgObject *Refresh(wxTreeCtrl *browser, const wxTreeItemId item);
 
 private:
-    wxString sourceType, targetType, castFunction, castContext, castNamespace;
+    wxString sourceType, sourceNamespace, targetType, targetNamespace, 
+             castFunction, castContext, castNamespace;
     OID sourceTypeOid, targetTypeOid;
 };
 
---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings

Reply via email to