Subversion Repositories DevTools

Rev

Rev 5506 | Blame | Compare with Previous | Last modification | View Log | RSS feed

SELECT DISTINCT rc.rtag_id,
       pkg.pkg_name,
       pv.pkg_version,
       pv.is_autobuildable,
       pv.pv_id,
       pv.created_stamp,
       TO_CHAR( pv.modified_stamp,'DD-Mon-YYYY HH24:MI:SS' ) AS modified_stamp,
       pm.code_lines,
       pm.branches,
       (CASE WHEN ut.test_types_fk IS NOT NULL AND ut.test_types_fk != 1 THEN 'Y' ELSE 'N' END) AS unit_tested,
       autotest_qry.autotested,
       (select count(*) from test_run tr where tr.build_id = cbi.build_id) as test_count
  FROM package_metrics pm,
       package_versions pv,
       packages pkg,
       release_content rc,
       unit_tests ut,
       (SELECT ut.pv_id, 'Y' AS autotested
          FROM unit_tests ut
         WHERE ut.test_types_fk = 7
       ) autotest_qry,
       ( select pv_id, max(build_id) as build_id  from BUILD_INSTANCES bi
        where bi.state in ('C')
        and bi.reason not in ('T')
        group by pv_id
        ) cbi,
       BUILD_INSTANCES bi
 WHERE pv.pkg_id = pkg.pkg_id
   AND pv.pv_id = rc.pv_id
   AND pm.pv_id (+) = pv.pv_id
   AND ut.pv_id (+) = pv.pv_id
   AND rc.rtag_id = :RTAG_ID
   AND autotest_qry.pv_id (+) = pv.pv_id
   and cbi.pv_id(+) = pv.pv_id
  and cbi.build_id = bi.build_id(+)
 ORDER BY UPPER(pkg.pkg_name)