- From: <bugzilla@wiggum.w3.org>
- Date: Tue, 25 Sep 2007 10:44:02 +0000
- To: public-qt-comments@w3.org
- CC:
http://www.w3.org/Bugs/Public/show_bug.cgi?id=5071
Summary: [XQTS] Expected results of K2-OrderbyExprWithout-13
Product: XML Query Test Suite
Version: unspecified
Platform: PC
OS/Version: Windows NT
Status: NEW
Severity: normal
Priority: P2
Component: XML Query Test Suite
AssignedTo: andrew.eisenberg@us.ibm.com
ReportedBy: oliver@cbcl.co.uk
QAContact: public-qt-comments@w3.org
The essence of this test is:
for $a in (3, 2, 1),
$b in (6, 5, 4)
order by $b
return $a
and the expexted result is:
3 2 1 3 2 1 3 2 1
However, there is no order by specified for $a, and so (for example) "3 2 1 1 2
3 3 2 1" is also a valid result.
The test should probably read "stable order by $b", or alternatively all 216
valid results could be listed in the catalog.
Received on Tuesday, 25 September 2007 10:44:11 UTC