{9} All Tickets

  • List all active tickets by priority.
  • Color each row based on priority.
Report execution failed:
AmbiguousColumn: column reference "description" is ambiguous
LINE 8:    changetime AS _changetime, description AS _description,
                                      ^

SELECT COUNT(*) FROM (

SELECT p.value AS __color__,
   id AS ticket, summary, component, t.type AS type, 
   owner, status,
   time AS created,
   severity,
   changetime AS _changetime, description AS _description,
   reporter AS _reporter,
   resolution
  FROM ticket t
  LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority'
  ORDER BY CAST(p.value AS int), milestone, t.type, time

) AS tab
Note: See TracReports for help on using and creating reports.