blob: 06e098462201145b386d4a76fc5c5a112089ed08 [file] [log] [blame]
(: name : orderbylocal-8 :)
(: description : Evaluation of "order by" clause with the "order by" clause of a FLWR expression set to "concat("another String Before",$x) ", where $x is a set of Strings and the ordering mode set to descending :)
(: Uses a locally defined sequence. :)
(: insert-start :)
declare variable $input-context1 external;
(: insert-end :)
<results> {
for $x in ("A String","B String","C String","D String","E String","F String","G String","H String","I String","J String","K String","L String","M String","N String","O String","P String","R String","S String","T String","U String","V String","W String","X String","Y String","Z String")
order by concat("another String Before",xs:string($x)) descending return concat("another String Before",xs:string($x))
}
</results>