This is an archived snapshot of W3C's public bugzilla bug tracker, decommissioned in April 2019. Please see the home page for more details.

Bug 4608 - K2-ExternalVariablesWithout-10
Summary: K2-ExternalVariablesWithout-10
Status: CLOSED FIXED
Alias: None
Product: XML Query Test Suite
Classification: Unclassified
Component: XML Query Test Suite (show other bugs)
Version: unspecified
Hardware: PC Windows XP
: P2 normal
Target Milestone: ---
Assignee: Frans Englich
QA Contact: Mailing list for public feedback on specs from XSL and XML Query WGs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2007-06-08 00:16 UTC by Andrew Eisenberg
Modified: 2007-06-13 18:40 UTC (History)
0 users

See Also:


Attachments

Description Andrew Eisenberg 2007-06-08 00:16:15 UTC
The query is K2-ExternalVariablesWithout-10 is:

declare variable $e := <e>
    <a/>
</e>;
declare variable $f := $e;
<r>
{
    $e is $e,
    $f is $e,
    $e, $f
}
</r>


The expected result is:

<r>true true<e> <a/></e><e><a/></e></r>

I believe that it has an extra space and that it should be:

<r>true true<e><a/></e><e><a/></e></r>
Comment 1 Frans Englich 2007-06-13 08:41:13 UTC
A fix has been attempted in CVS, XQTS_current.zip
is updated.