Actions
Bug #5310
closed//*[xxx] generates a wrong execution plan
Start date:
10/10/2013
Due date:
% Done:
100%
Estimated time:
Description
Since the DOM tree is built for first candidate node (i.e. root), the execution plan should be:
<XPath>
    <tree nodes="descendant-or-self::*[child::xxx]" depth="999" localName="*">
        <predicate>self::*/parent::*</predicate>
    </tree>
</XPath>
	instead of:
<XPath>
    <tree nodes="self::*[child::xxx]" depth="999" localName="*">
        <predicate>self::*/parent::*</predicate>
    </tree>
</XPath>
  
      
      Updated by Reynaud Sylvain about 12 years ago
      
    
    - Status changed from New to Resolved
 - Assigned To set to Reynaud Sylvain
 - % Done changed from 0 to 100
 
Actions