Ticket #122: ticket122_v1.patch
| File ticket122_v1.patch, 1.1 KB (added by gleu, 2 years ago) |
|---|
-
pgadmin/slony/dlgRepCluster.cpp
737 737 + txtNodeID->GetValue() + wxT(", ") 738 738 + qtDbString(txtNodeName->GetValue()); 739 739 740 if (StrToDouble(remoteVersion) >= 1.1 )740 if (StrToDouble(remoteVersion) >= 1.1 && StrToDouble(remoteVersion) < 2.0) 741 741 sql += wxT(", false"); 742 742 743 743 sql += wxT(");\n") -
pgadmin/slony/slNode.cpp
82 82 + NumToStr(GetSlId()) + wxT(", ") 83 83 + qtDbString(GetComment()); 84 84 85 if (GetCluster()->ClusterMinimumVersion(1, 1))85 if (GetCluster()->ClusterMinimumVersion(1, 1) && !GetCluster()->ClusterMinimumVersion(2, 0)) 86 86 sql += wxT(", ") + BoolToStr(GetSpool()); 87 87 sql += wxT(");\n"); 88 88 }
