Order By not supporting multiple order by specs
Status: Alpha
Brought to you by:
howardk
According to XQuery 1.0, "order by" is followed by an
OrderSpecList, which is a comma separated list of
OrderSpec's, but XQEngine doesn't support this.
If you try the following query in the SampleApp:
for $b in $books//book
order by $b/title,
$b/price descending empty least
return $b
You get an InvalidQueryException. This query was taken
from the XQuery 1.0 document (I removed the "stable"
since XQEngine didn't like that either)
Logged In: YES
user_id=134704
It'll be a while before I get to this since there are a number to
to-do items with higher priority.