Subversion Repositories DevTools

Rev

Rev 5506 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
119 ghuddy 1
SELECT *
5898 dpurdie 2
  FROM  (
119 ghuddy 3
 
5898 dpurdie 4
 
5
        /* ------- ERROR: SBOM Priority Section Incomplete ------- */   
6
        SELECT DISTINCT 'enum_MSG_PACKAGE_SBOMPRIORITY_INCOMPLETE' AS err_message,
7
                        'fixed_issues.asp' AS rfile,
8
                        '#SBOM_PRIORITY' AS anchor,
9
                        1 AS priority,
10
                        'ERROR' AS products_msg
11
                   FROM PACKAGE_VERSIONS pv
12
                  WHERE pv.pv_id = :PV_ID
13
                    AND ( pv.SBOM_PRIORITY IS NULL )
14
 
15
        /* ------- ERROR: Package is unbuildable ------- */
16
        SELECT DISTINCT 'enum_MSG_UNBUILDABLE_PACKAGE' AS err_message,
17
               'fixed_issues.asp' AS rfile,
18
               '#PACKAGE_INFORMATION' AS anchor,
19
               2 AS priority,
20
               'ERROR' AS products_msg
21
         FROM  PACKAGE_VERSIONS pv
22
         WHERE pv.pv_id = :PV_ID
23
           AND pv.build_type  = 'U'
119 ghuddy 24
 
25
 
5898 dpurdie 26
        ) errmsg
27
ORDER BY priority