~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to test_on_merge.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2006-03-13 07:13:04 UTC
  • mfrom: (3257.1.1 trivial)
  • Revision ID: pqm@pqm.ubuntu.com-20060313071304-9b091bc23371a597
[trivial] 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