Query Trac for all tickets related to a user - Stack Overflow most recent 30 from stackoverflow.com2009-12-17T11:00:35Zhttp://stackoverflow.com/feeds/question/916438http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/916438/query-trac-for-all-tickets-related-to-a-user2Query Trac for all tickets related to a userQuintin Par2009-05-27T15:34:05Z2009-05-29T10:00:48Z
<p>How do I query for all trac tickets related to a user. i.e. all tickets for which the tickets were once assigned, assigned now, created , etc etc </p>
http://stackoverflow.com/questions/916438/query-trac-for-all-tickets-related-to-a-user/925052#9250522Answer by laalto for Query Trac for all tickets related to a userlaalto2009-05-29T08:51:08Z2009-05-29T10:00:48Z<p>Create custom queries to the <code>ticket_change</code> table. Some SQL required. For assigned once/now, look for rows where <code>field='owner'</code>, <code>newvalue</code> column contains the user name the ticket was assigned to. For created tickets, just query by <code>reporter</code> in the <code>ticket</code> table.</p>
<p>Example:</p>
<pre><code>SELECT p.value AS __color__,
id AS ticket, summary, component, version, milestone,
t.type AS type, priority, t.time AS created,
changetime AS _changetime, description AS _description,
reporter AS _reporter
FROM ticket t, enum p, ticket_change c
WHERE p.name = t.priority AND p.type = 'priority'
AND c.field = 'owner'
AND c.newvalue = '$USER'
AND c.ticket = t.id
ORDER BY p.value, milestone, t.type, t.time
</code></pre>
http://stackoverflow.com/questions/916438/query-trac-for-all-tickets-related-to-a-user/925137#9251371Answer by Spoike for Query Trac for all tickets related to a userSpoike2009-05-29T09:20:15Z2009-05-29T09:20:15Z<p>You can express this with a <a href="http://trac.edgewall.org/wiki/TracQuery" rel="nofollow">TraqQuery expression</a>. E.g. if you want the columns id, summary and status to show up and query all the tickets for the currently logged in user ($USER) then use the following query.</p>
<pre><code>query:?col=id
&
col=summary
&
col=status
&
owner=$USER
</code></pre>
<p>However this query assumes that the <code>owner</code> hasn't been the same during the lifetime of a ticket (since ownership can be changed).</p>
<p>If you want a specific user then replace <code>$USER</code> with the actual username. Also if you're using the <a href="http://www.agile42.com/cms/pages/agilo/" rel="nofollow">Agilo plugin</a> you can easily create new queries on the fly via the web-UI. This is done by looking at a report and adding filters to the report.</p>