- From: <bugzilla@jessica.w3.org>
- Date: Fri, 14 Nov 2014 16:45:07 +0000
- To: public-qt-comments@w3.org
https://www.w3.org/Bugs/Public/show_bug.cgi?id=26859
--- Comment #2 from Josh Spiegel <josh.spiegel@oracle.com> ---
The results of the path expression should be in document order so the order by
can still be eliminated in your version.
What about this:
/DataValues/(
(
for $x in NegativeNumbers/*
order by (if (name(.) = 'orderData') then $x else -$x)
return $x
)[1]
)
With expected result:
<orderData xmlns="http://www.w3.org/XQueryTestOrderBy">-0</orderData>
--
You are receiving this mail because:
You are the QA Contact for the bug.
Received on Friday, 14 November 2014 16:45:08 UTC