Package: release.debian.org Severity: normal User: [email protected] Usertags: unblock
Dear Release Team, a database schema upgrade bug has been found in pdns-backend-mysql. I've fixed the schema SQL file, please unblock pdns 3.4.1-4. Bug #773345, severity serious, Debdiff below. unblock pdns/3.4.1-4 Best, Christian diff -Nru pdns-3.4.1/debian/changelog pdns-3.4.1/debian/changelog --- pdns-3.4.1/debian/changelog 2014-11-15 18:24:42.000000000 +0100 +++ pdns-3.4.1/debian/changelog 2014-12-23 12:29:56.000000000 +0100 @@ -1,3 +1,13 @@ +pdns (3.4.1-4) unstable; urgency=medium + + * Remove DROP INDEX domainmetaidindex from MySQL schema upgrade files. + The Debian schema files since at least wheezy didn't have that index, + so we can't drop it. It'd be nicer if we could say DROP INDEX IF EXISTS, + but apparently there's no such thing in MySQL. + Thanks to Andreas Beckmann <[email protected]> (Closes: #773345) + + -- Christian Hofstaedtler <[email protected]> Tue, 23 Dec 2014 12:29:35 +0100 + pdns (3.4.1-3) unstable; urgency=medium * Fix PACKAGEVERSION not having the actual version. diff -Nru pdns-3.4.1/debian/sql/mysql/3.4.0 pdns-3.4.1/debian/sql/mysql/3.4.0 --- pdns-3.4.1/debian/sql/mysql/3.4.0 2014-11-01 22:00:31.000000000 +0100 +++ pdns-3.4.1/debian/sql/mysql/3.4.0 2014-12-23 12:25:51.000000000 +0100 @@ -13,7 +13,6 @@ ALTER TABLE cryptokeys ENGINE=InnoDB; ALTER TABLE tsigkeys ENGINE=InnoDB; -DROP INDEX domainmetaidindex ON domainmetadata; CREATE INDEX domainmetadata_idx ON domainmetadata (domain_id, kind); CREATE TABLE comments ( -- To UNSUBSCRIBE, email to [email protected] with a subject of "unsubscribe". Trouble? Contact [email protected] Archive: https://lists.debian.org/[email protected]

