Precedence rules for QuantifiedExpr - OrExpr - AndExpr

"Peter Coppens" <[email protected]>
Newsgroups gmane.comp.web.query-languages
Message-ID <[email protected]>
All,

Looking at the XQuery spec, I am somewhat surprised by the consequences of
the precedence rules for QuantifiedExpr - OrExpr and AndExpr 

What I mean is:

Take the query

for $x in (1,2,3)
where 
  some $y in (1,2) satisfies 1 = $y and $y = 1
return $x
 
Which, I think, is equivalent to 
 
for $x in (1,2,3)
where 
  some $y in (1,2) satisfies (1 = $y and $y = 1)
return $x
 
But now take the query
 
for $x in (1,2,3)
where 
  some $y in (1,2) satisfies 1 = $y or $y = 1
return $x
 
 
Which, I think, is equivalent to 
 
for $x in (1,2,3)
where 
  (some $y in (1,2) satisfies 1 = $y) or $y = 1
return $x

I find that rather confusing.

So I guess I have the following questions 

(1) is the above interpretation correct?
(2) is this a deliberate choice and if yes, are there any motivations for
that decision that can be shared?
(3) would it not be possible to add an extra level of precendence where the
OrExpr comes to sit between QuantifiedExpr and AndExpr, or would that
propagate to have other side effects?

Thanks,

Peter
lmpx.com only provides a reader for public news (NNTP) servers. It is not affiliated with the servers or forums shown here and is not responsible for the content of articles, which is written by their respective authors.