[jira] Updated: (LUCENE-395) CoordConstrainedBooleanQuery + QueryParser support

2005-11-06 Thread paul.elschot (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-395?page=all ] paul.elschot updated LUCENE-395: Attachment: TestBoolean2Patch5.txt Patch to TestBoolean2.java to use try/finally to reset the static useScorer14 flag in BooleanQuery even when a test fails. T

[jira] Closed: (LUCENE-440) FilteredQuery should have getFilter()

2005-11-06 Thread Yonik Seeley (JIRA)
[ http://issues.apache.org/jira/browse/LUCENE-440?page=all ] Yonik Seeley closed LUCENE-440: --- Fix Version: 1.9 Resolution: Fixed Assign To: Yonik Seeley patch applied. > FilteredQuery should have getFilter() > -

Re: svn commit: r331111 - /lucene/java/trunk/src/test/org/apache/lucene/search/TestBoolean2.java

2005-11-06 Thread Erik Hatcher
I haven't looked at this code in detail, but it seems this resetting could be done in tearDown() of the test cases rather than complicating the tests with try/finally? Just a JUnit FYI... tearDown is called after _each_ testXXX method, so if the reset is needed in the middle of a testXXX th