~ubuntu-branches/ubuntu/maverick/pgadmin3/maverick

« back to all changes in this revision

Viewing changes to pgadmin/slony/dlgRepNode.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Gerfried Fuchs
  • Date: 2009-12-17 20:34:00 UTC
  • mfrom: (1.1.7 upstream)
  • Revision ID: james.westby@ubuntu.com-20091217203400-tlnmt4m3v7udjp0h
Tags: 1.10.1-1
* New upstream release, containing fix for:
  - default value in function parameters not shown (closes: #547940)
  - cannot open files without dot in names for restore (closes: #451038)
* Suggest postgresql-contrib (closes: #503291)
* Set myself as Maintainer and remove Raphael. Thanks for his work so far.
* Switch Uploaders and Maintainer role to better describe reality.
* Bump to Standards-Version to 3.8.3.
* Update to debhelper level 7, use dh_prep instead of dh_clean -k.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
// pgAdmin III - PostgreSQL Tools
2
 
// RCS-ID:      $Id: dlgRepNode.cpp 7758 2009-03-26 20:49:59Z dpage $
 
2
// RCS-ID:      $Id: dlgRepNode.cpp 8059 2009-10-01 13:44:43Z dpage $
3
3
// Copyright (C) 2002 - 2009, The pgAdmin Development Team
4
4
// This software is released under the BSD Licence
5
5
//
112
112
 
113
113
    sql += wxT(", ") + qtDbString(txtComment->GetValue());
114
114
 
115
 
    // if cluster->GetClusterVersion()
116
 
    sql +=  wxT(", false");
 
115
    // The spool parameter was removed for Slony 2.0
 
116
    if (!cluster->ClusterMinimumVersion(2, 0))
 
117
        sql +=  wxT(", false");
117
118
 
118
119
    sql += wxT(");\n");
119
120