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 19659 - [XSLT 3.0] error in streamability rules for ./x
Summary: [XSLT 3.0] error in streamability rules for ./x
Status: CLOSED FIXED
Alias: None
Product: XPath / XQuery / XSLT
Classification: Unclassified
Component: XSLT 3.0 (show other bugs)
Version: Last Call drafts
Hardware: PC All
: P2 normal
Target Milestone: ---
Assignee: Michael Kay
QA Contact: Mailing list for public feedback on specs from XSL and XML Query WGs
URL:
Whiteboard:
Keywords:
Depends on:
Blocks:
 
Reported: 2012-10-22 21:13 UTC by Michael Kay
Modified: 2014-05-15 14:00 UTC (History)
0 users

See Also:


Attachments

Description Michael Kay 2012-10-22 21:13:47 UTC
There is an error (or at any rate, a serious limitation) in the streamability rules for relative path expressions. The spec (section 19.3.7, RelativePathExpr [35]) says that if the first step of the path expression is motionless, then the path expression is motionless. 

Consider the expression ./x, or equivalents such as (. treat as node())/x.

The syntactic context of the LHS of "/" is a navigation context; "." in a navigation context is free-ranging; therefore ./x is free-ranging.
Comment 1 Michael Kay 2013-02-12 10:52:08 UTC
Disucssed by the WG today. 

Needs further investigation to see if we can identify a solution. Alternatively, can we live with the restriction that such expressions are not guaranteed streamable?
Comment 2 Michael Kay 2013-02-25 15:16:32 UTC
I believe the problem can be fixed by adding another streamability rule for RelativePathExpr after:

If the first StepExpr is motionless, then motionless

namely

if either operand is a ContextItemExpr, or an AxisStep using the self axis in which all predicates are motionless, then the streamability of the other operand.
Comment 3 Michael Kay 2013-05-02 16:37:36 UTC
I propose the following text.

In 19.3.7, Classifying expressions, change the entry for RelativePathExpr [35] as follows:

Change the first paragraph to:

The RelativePathExpr is first preprocessed as follows:

(a) Any '//' pseudo-operator is expanded to '/descendant-or-self::node()/'

(b) The expression tree is written in such a way that '/' is a binary operator, for example a/b/c becomes (a/b)/c.

The following rules then apply to a RelativePathExpr that has '/' as its operator, with two operands. The streamability is the first of the following that applies:

1. If either operand is a ContextItemExpr (".") or an AxisExpression using the self axis, optionally followed (in either case) by one or more motionless predicates,
then the streamability of the other operand.

2. (existing rule 1, et seq, unchanged)
Comment 4 Michael Kay 2013-05-16 11:41:27 UTC
The proposed text was accepted (2 May 2013) and has been incorporated in the spec.