Order by date seems broken in search
In an attempt to create an ‘issue activity log’ for yellowgrass, I tried to retrieve the issues ordered by
log.moment
(type ofDateTime
). For some reason, the retrieved issues are not retrieved in the intended order.var s := search Issue with filter project.private : false order by log.moment desc limit 10; var results := results from s.matchAllQuery();
This may be related to the
Submitted by Elmer van Chastelet on 13 June 2013 at 09:29DateBridge
, or something special is going on when using a “match all”-query.