Bugs item #3510472, was opened at 2012-03-23 04:04
Message generated for change (Comment added) made by mozinsur
You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=713730&aid=3510472&group_id=129076

Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: Query Execution
Group: Sedna (current&development)
>Status: Closed
>Resolution: Fixed
Priority: 5
Private: No
Submitted By: ruvim (ruv)
Assigned to: Ilya Taranov (mozinsur)
Summary: sticking data

Initial Comment:
Sedna version="3.5" build="188"
OS — win32

First request to variable fails (returns empty) in the given complicated case.

Code fragment:
  return <test>{
    <ooo>{ $data-cells/item }</ooo>
    ,
    <ooo>{ $data-cells/item }</ooo>
  }</test>

Actual results:

<test>
  <ooo/>
  <ooo>
    <item price="23.52"/>
  </ooo>
</test>

Expected results:

<test>
  <ooo>
    <item price="23.52"/>
  </ooo>
  <ooo>
    <item price="23.52"/>
  </ooo>
</test>

(see testcase attached)

----------------------------------------------------------------------

>Comment By: Ilya Taranov (mozinsur)
Date: 2012-03-29 06:11

Message:
Fixed in XPath evaluation (temporary node pathes must nor be cached)

----------------------------------------------------------------------

Comment By: Ilya Taranov (mozinsur)
Date: 2012-03-26 11:19

Message:
If last commit passes the issue will be fixed

----------------------------------------------------------------------

Comment By: Ivan Shcheklein (shcheklein)
Date: 2012-03-26 03:40

Message:
Seems to me there is issue with new Axis (open/close/reopen). Reproduced on
simplified version:

for $i in (1,2,3)
let $data-cells :=
      (<g/>,
      <g>        
          <item>{ 11 }</item>
      </g>)
return ($data-cells/item, $data-cells/item)

Works perfectly on 3.4.66.

----------------------------------------------------------------------

You can respond by visiting: 
https://sourceforge.net/tracker/?func=detail&atid=713730&aid=3510472&group_id=129076

------------------------------------------------------------------------------
This SF email is sponsosred by:
Try Windows Azure free for 90 days Click Here 
http://p.sf.net/sfu/sfd2d-msazure
_______________________________________________
Sedna-discussion mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/sedna-discussion

Reply via email to