{14} Low complexity Tickets, good for beginners

  • List all low complexity (Trivial or Easy) tickets
  • Sorted and colored by Priority
  • Accepted tickets are not shown
Report execution failed:
OperationalError: ambiguous column name: description

SELECT COUNT(*) FROM (

SELECT p.value AS __color__,
   id AS ticket, summary, component, version, milestone, t.type AS type, 
   c.value AS complexity, status,
   time AS created,
   changetime AS _changetime, description AS _description,
   reporter AS _reporter
  FROM ticket t
  LEFT OUTER JOIN ticket_custom c ON (t.id = c.ticket AND c.name = 'complexity')
  LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority'
  WHERE  status NOT IN ('closed','accepted') and (c.value IN ('Easy', 'Trivial'))
  ORDER BY CAST(p.value AS int), milestone, t.type, time
) AS tab
Note: See TracReports for help on using and creating reports.