]> git.decadent.org.uk Git - dak.git/commitdiff
update2
authorJoerg Jaspert <joerg@debian.org>
Sun, 18 Jan 2009 16:13:45 +0000 (17:13 +0100)
committerJoerg Jaspert <joerg@debian.org>
Sun, 18 Jan 2009 16:13:45 +0000 (17:13 +0100)
also create the perl language. We are database superuser, we can do so.

And then set config value to 2, this is update 2.

Signed-off-by: Joerg Jaspert <joerg@debian.org>
dak/dakdb/update2.py [changed mode: 0644->0755]

old mode 100644 (file)
new mode 100755 (executable)
index bddf0a7..12fe4f1
@@ -26,12 +26,18 @@ import psycopg2, time
 ################################################################################
 
 def do_update(self):
-    print "Note the PL/Perl (plperl) procedural language must be enabled first."
-    print "Run 'createlang plpgsql projectb' to add it."
+    print "Note: to be able to enable the the PL/Perl (plperl) procedural language, we do"
+    print "need postgresql-plperl-$postgres-version installed. Make sure that this is the"
+    print "case before you continue. Interrupt if it isn't, sleeping 5 seconds now."
+    print "(We need to be database superuser for this to work!)"
+    time.sleep (5)
 
     try:
         c = self.db.cursor()
 
+        print "Enabling PL/Perl language"
+        c.execute("CREATE LANGUAGE plpgsql;")
+
         print "Adding debversion type to database."
 
 # Not present in all databases, maybe PL/Perl version-dependent?
@@ -378,7 +384,7 @@ $$
         c.execute("ALTER TABLE source ALTER COLUMN version TYPE debversion;")
         c.execute("ALTER TABLE binaries ALTER COLUMN version TYPE debversion;")
 
-        c.execute("UPDATE config SET value = '1' WHERE name = 'db_revision'")
+        c.execute("UPDATE config SET value = '2' WHERE name = 'db_revision'")
 
         self.db.commit()