Problem with ConstantScoreRangeQuery

2007-10-29 Thread Adrian Pillinger
I am programatically creating a query as follows. BooleanQuery query = new BooleanQuery(); ConstantScoreRangeQuery range = new ConstantScoreRangeQuery ("creationDate", "19500101", "20071029", false, false); query.add(range, Occur.MUST); I am then executing the query which unexpecte

Re: Special characters

2006-08-14 Thread Adrian Pillinger
Thanks for the replies on my question. In the end I've taken the StandardAnalyser grammar, modified it and generated a new analyser with JavaCC. Seems to be working a treat! Adrian On 11 Aug 2006, at 14:32, Erik Hatcher wrote: On Aug 11, 2006, at 1:23 AM, Martin Braun wrote: Hello Adrian