X-Git-Url: https://git.decadent.org.uk/gitweb/?a=blobdiff_plain;f=dak%2Fdakdb%2Fupdate3.py;h=1eab89f66e45e2147403268b0984d8e60bce5670;hb=27e00376e81d1c37ff327ee0d39670b266418869;hp=c91ecf56eadba987c11339109ea371a71cfa65a4;hpb=ec44bcc3b4bbeb7a389dda77f39ff54436d1b181;p=dak.git diff --git a/dak/dakdb/update3.py b/dak/dakdb/update3.py index c91ecf56..1eab89f6 100755 --- a/dak/dakdb/update3.py +++ b/dak/dakdb/update3.py @@ -36,11 +36,19 @@ def do_update(self): try: c = self.db.cursor() - c.execute("DROP FUNCTION versioncmp(text, text);") + # The reason we try and check to see if it exists is that + # psycopg2 might leave the cursor invalid if the drop fails + c.execute("SELECT proname from pg_catalog.pg_proc WHERE proname = 'versioncmp'") + rows = c.fetchall() + if rows: + c.execute("DROP FUNCTION versioncmp(text, text);") + else: + print "function already does not exist" + c.execute("UPDATE config SET value = '3' WHERE name = 'db_revision'") self.db.commit() - except psycopg2.ProgrammingError, msg: + except psycopg2.ProgrammingError as msg: self.db.rollback() raise DBUpdateError, "Unable to appy versioncmp removal, rollback issued. Error message : %s" % (str(msg))