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

Tags:
----
REL-1_2_0_PATCHES

Modified Files:
--------------
    pgadmin3/src/include:
        pgCast.h (r1.19.2.1 -> r1.19.2.2)

Index: pgCast.h
===================================================================
RCS file: /projects/pgadmin3/src/include/pgCast.h,v
retrieving revision 1.19.2.1
retrieving revision 1.19.2.2
diff -Lsrc/include/pgCast.h -Lsrc/include/pgCast.h -u -w -r1.19.2.1 -r1.19.2.2
--- 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 9: the planner will ignore your desire to choose an index scan if your
      joining column's datatypes do not match

Reply via email to