[Bug 26859] orderBy63 may not test intended error conditions

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