~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to test_on_merge.py

  • Committer: Stuart Bishop
  • Date: 2006-03-13 03:35:19 UTC
  • mto: This revision was merged to the branch mainline in revision 3258.
  • Revision ID: stuart.bishop@canonical.com-20060313033519-6c146581b5a25ee5
PostgreSQL 8.0+ required

Show diffs side-by-side

added added

removed removed

Lines of Context:
63
63
        # we expected.
64
64
        pass
65
65
    else:
66
 
        if numeric_server_version < (7, 4):
67
 
            print 'Your PostgreSQL version is too old.  You need 7.4.x'
 
66
        if numeric_server_version < (8, 0):
 
67
            print 'Your PostgreSQL version is too old.  You need 8.x.x'
68
68
            print 'You have %s' % server_version
69
69
            return 1
70
70