Coverage for dak/dakdb/update130.py: 81%

14 statements  

« prev     ^ index     » next       coverage.py v6.5.0, created at 2025-08-26 22:11 +0000

1"""ensure merged_pdiffs is default for new suites 

2 

3@contact: Debian FTP Master <ftpmaster@debian.org> 

4@copyright: 2025 Joerg Jaspert <joerg@debian.org> 

5@license: GNU General Public License version 2 or later 

6""" 

7 

8# This program is free software; you can redistribute it and/or modify 

9# it under the terms of the GNU General Public License as published by 

10# the Free Software Foundation; either version 2 of the License, or 

11# (at your option) any later version. 

12 

13# This program is distributed in the hope that it will be useful, 

14# but WITHOUT ANY WARRANTY; without even the implied warranty of 

15# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 

16# GNU General Public License for more details. 

17 

18# You should have received a copy of the GNU General Public License 

19# along with this program; if not, write to the Free Software 

20# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 

21 

22################################################################################ 

23 

24import psycopg2 

25 

26from daklib.dak_exceptions import DBUpdateError 

27 

28statements = [ 

29 """ 

30 ALTER TABLE suite 

31 ALTER COLUMN merged_pdiffs SET DEFAULT TRUE 

32 """, 

33] 

34 

35################################################################################ 

36 

37 

38def do_update(self): 

39 print(__doc__) 

40 try: 

41 c = self.db.cursor() 

42 

43 for stmt in statements: 

44 c.execute(stmt) 

45 

46 c.execute("UPDATE config SET value = '130' WHERE name = 'db_revision'") 

47 self.db.commit() 

48 

49 except psycopg2.ProgrammingError as msg: 

50 self.db.rollback() 

51 raise DBUpdateError( 

52 "Unable to apply sick update 130, rollback issued. Error message: {0}".format( 

53 msg 

54 ) 

55 )