-- ## 1: 未解決チケット ## -- -- -- * 全コンポーネント、全バージョンの未解決チケットを優先度順に表示します。 -- * 優先度別の色付けを行っています。 -- * チケットに着手済みであれば、担当者名に '*' が付与されます。 SELECT p.value AS __color__, id AS ticket, summary, component, version, milestone, t.type AS type, owner, status, time AS created, changetime AS _changetime, description AS _description, reporter AS _reporter FROM ticket t, enum p WHERE status <> 'closed' AND p.name = t.priority AND p.type = 'priority' ORDER BY p.value, milestone, t.type, time