From: Wolfgang M. M. <wol...@us...> - 2004-07-21 08:54:05
|
Update of /cvsroot/exist/eXist-1.0/src/org/exist/xquery/parser In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv15944/src/org/exist/xquery/parser Modified Files: XQuery.g Log Message: Code to track term frequency counts in NativeTextEngine had to be rewritten as it slowed down the indexing. Index: XQuery.g =================================================================== RCS file: /cvsroot/exist/eXist-1.0/src/org/exist/xquery/parser/XQuery.g,v retrieving revision 1.19 retrieving revision 1.20 diff -C2 -d -r1.19 -r1.20 *** XQuery.g 17 Jul 2004 10:00:44 -0000 1.19 --- XQuery.g 21 Jul 2004 08:53:56 -0000 1.20 *************** *** 2612,2617 **** protected LPPAREN : '[' ; protected RPPAREN : ']' ; ! protected LPAREN : '(' ; ! protected RPAREN : ')' ; protected SELF : '.' ; protected PARENT : ".." ; --- 2612,2617 ---- protected LPPAREN : '[' ; protected RPPAREN : ']' ; ! protected LPAREN options { paraphrase="'('"; } : '(' ; ! protected RPAREN options { paraphrase="')'"; } : ')' ; protected SELF : '.' ; protected PARENT : ".." ; |