-
-
Save wtnabe/4266171 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
SELECT p.value AS __color__, | |
milestone||' Release' AS __group__, | |
id AS ticket, summary, component, version, t.type AS type, | |
owner, status, | |
time AS created, | |
changetime AS _changetime, t.description AS _description, | |
reporter AS _reporter | |
FROM ticket t, enum p | |
join milestone m on (t.milestone = m.name) | |
WHERE m.due > 0 and m.completed == 0 and t.status != 'closed' | |
AND p.name = t.priority AND p.type = 'priority' | |
ORDER BY m.due, p.value, time |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment