blob: cd02ad9b40f91e2940fce94b6d901ccd72734f9b [file] [log] [blame]
(: name : orderbywithout-3 :)
(: description : Evaluation of "order by" clause with the "order by" clause of a FLWOR expression set to "concat($x,"another String After") ", where $x is a set of Strings. :)
(: 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(xs:string($x),"another String After") return concat(xs:string($x),"another String After")
}
</results>