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 11853 - 4.2.9 Q9: expected result is wrong
Summary: 4.2.9 Q9: expected result is wrong
Status: RESOLVED DUPLICATE of bug 11760
Alias: None
Product: XPath / XQuery / XSLT
Classification: Unclassified
Component: XQuery 3.0 Use Cases (show other bugs)
Version: Working drafts
Hardware: PC All
: P2 normal
Target Milestone: ---
Assignee: Jonathan Robie
QA Contact: Mailing list for public feedback on specs from XSL and XML Query WGs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2011-01-24 23:31 UTC by Matthias Brantner
Modified: 2011-03-01 18:04 UTC (History)
0 users

See Also:


Attachments

Description Matthias Brantner 2011-01-24 23:31:07 UTC
The expected result of windowing query Q9 is wrong. Instead of 

<result>
  <working-time>
    <person>Barbara</person>
    <time>PT3H</time>
  </working-time>
  <working-time>
    <person>Anton</person>
    <time>PT9H30M</time>
  </working-time>
  <working-time>
    <person>Clara</person>
    <time>PT5H15M</time>
  </working-time>
</result>

it should be

<result>
  <working-time>
    <person>Barbara</person>
    <time>PT3H</time>
  </working-time>
  <working-time>
    <person>Clara</person>
    <time>PT3H45M</time>
  </working-time>
  <working-time>
    <person>Anton</person>
    <time>PT9H30M</time>
  </working-time>
</result>
Comment 1 Jonathan Robie 2011-03-01 18:04:37 UTC

*** This bug has been marked as a duplicate of bug 11760 ***