-- ## 7: My Tickets ## -- -- This report demonstrates the use of the automatically set -- USER dynamic variable, replaced with the username of the -- logged in user when executed. SELECT p.value AS __color__, (CASE WHEN t.owner = $USER AND t.status = 'accepted' THEN 'Accepted' WHEN t.owner = $USER THEN 'Owned' WHEN t.reporter = $USER THEN 'Reported' ELSE 'Commented' END) AS __group__, t.id AS ticket, t.summary, t.component, t.version, t.milestone, t.type AS type, t.priority, t.time AS created, t.changetime AS _changetime, t.description AS _description, t.reporter AS _reporter FROM ticket t LEFT JOIN enum p ON p.name = t.priority AND p.type = 'priority' WHERE t.status <> 'closed' AND (t.owner = $USER OR t.reporter = $USER OR EXISTS (SELECT * FROM ticket_change tc WHERE tc.ticket = t.id AND tc.author = $USER AND tc.field = 'comment')) ORDER BY (COALESCE(t.owner, '') = $USER AND t.status = 'accepted') DESC, COALESCE(t.owner, '') = $USER DESC, COALESCE(t.reporter, '') = $USER DESC, CAST(p.value AS int), t.milestone, t.type, t.time