On Wed, Oct 12, 2011 at 4:26 PM, Roberto
<[email protected]>wrote:

> Using format=table I'm able to have a full row at the bottom of the
> ticket like in:
>
>
> [[TicketQuery(max=3,status=closed,order=id,desc=1,format=table,col=resolution|
> summary|owner|reporter,rows=description)]]
>
> Is there a way to do the same by an SQL query?
>

Use the magic _description_:

SELECT
   id AS ticket, summary, component, owner, status,
   description as _description_
  FROM ticket t

-- 
You received this message because you are subscribed to the Google Groups "Trac 
Users" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to 
[email protected].
For more options, visit this group at 
http://groups.google.com/group/trac-users?hl=en.

Reply via email to