Update of /cvsroot/exist/eXist-1.0/src/org/exist/xquery
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv757/src/org/exist/xquery
Modified Files:
OpAnd.java
Log Message:
Fixed bug in the processing of logical operators "and", "or".
Index: OpAnd.java
===================================================================
RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/xquery/OpAnd.java,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** OpAnd.java 29 Jan 2004 15:06:42 -0000 1.1
--- OpAnd.java 5 Mar 2004 16:15:48 -0000 1.2
***************
*** 59,63 ****
rr = rr.getContextNodes(inPredicate);
rl =
! rl.intersection(rr);
return rl;
} else {
--- 59,63 ----
rr = rr.getContextNodes(inPredicate);
rl =
! rr.intersection(rl);
return rl;
} else {
|