Make WordPress Core

{27} Commit Candidates by Wranglers (experimental)

Create a new ticket

Tickets that have been reviewed by trusted Bug Wranglers and have up-to-date patches and are ready to be considered for inclusion into the WordPress core.

Report execution failed:
OperationalError: ambiguous column name: description

SELECT COUNT(*) FROM (
SELECT 
CASE
  WHEN priority = 'highest omg bbq' OR severity IN ( 'critical', 'blocker' )
  THEN 1
  WHEN priority = 'high' OR severity = 'major'
  THEN 2
  WHEN priority IN ( 'low', 'lowest' ) OR severity IN ( 'trivial', 'minor' )
  THEN 4
  ELSE 0
  END AS __color__,
   id AS ticket, summary, component, milestone, t.type AS type, severity, time AS created,
   changetime, description AS _description,
   reporter AS _reporter
  FROM ticket t,enum p
  WHERE status <> 'closed' AND p.name=t.priority AND p.type='priority'
AND t.keywords LIKE '%%commit%%'
AND t.owner IN (
  SELECT DISTINCT username
  FROM permission
  WHERE action IN ( 'Committer', 'Bug Gardener', 'Component Maintainer' )
)
  ORDER BY p.value, severity, time
) AS tab
Note: See TracReports for help on using and creating reports.