You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@lucene.apache.org by Steve Rowe <sa...@gmail.com> on 2013/11/29 16:45:40 UTC

Re: svn commit: r1546571 - in /lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr: handler/component/DistributedQueryComponentCustomSortTest.java search/TestCustomSort.java

Thanks Robert!
On Nov 29, 2013 9:37 AM, <rm...@apache.org> wrote:

> Author: rmuir
> Date: Fri Nov 29 14:37:01 2013
> New Revision: 1546571
>
> URL: http://svn.apache.org/r1546571
> Log:
> SOLR-5354: don't try to write docvalues with 3.x codec in these tests
>
> Modified:
>
> lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/handler/component/DistributedQueryComponentCustomSortTest.java
>
> lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/search/TestCustomSort.java
>
> Modified:
> lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/handler/component/DistributedQueryComponentCustomSortTest.java
> URL:
> http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/handler/component/DistributedQueryComponentCustomSortTest.java?rev=1546571&r1=1546570&r2=1546571&view=diff
>
> ==============================================================================
> ---
> lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/handler/component/DistributedQueryComponentCustomSortTest.java
> (original)
> +++
> lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/handler/component/DistributedQueryComponentCustomSortTest.java
> Fri Nov 29 14:37:01 2013
> @@ -17,6 +17,7 @@ package org.apache.solr.handler.componen
>   * limitations under the License.
>   */
>
> +import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
>  import org.apache.solr.BaseDistributedSearchTestCase;
>  import org.apache.solr.client.solrj.response.QueryResponse;
>  import org.apache.solr.common.SolrDocument;
> @@ -30,6 +31,7 @@ import java.nio.ByteBuffer;
>   *
>   * @see org.apache.solr.handler.component.QueryComponent
>   */
> +@SuppressCodecs({"Lucene3x"})
>  public class DistributedQueryComponentCustomSortTest extends
> BaseDistributedSearchTestCase {
>
>    public DistributedQueryComponentCustomSortTest() {
>
> Modified:
> lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/search/TestCustomSort.java
> URL:
> http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/search/TestCustomSort.java?rev=1546571&r1=1546570&r2=1546571&view=diff
>
> ==============================================================================
> ---
> lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/search/TestCustomSort.java
> (original)
> +++
> lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/search/TestCustomSort.java
> Fri Nov 29 14:37:01 2013
> @@ -17,6 +17,7 @@ package org.apache.solr.search;
>   * limitations under the License.
>   */
>
> +import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
>  import org.apache.solr.SolrTestCaseJ4;
>  import org.junit.BeforeClass;
>
> @@ -26,6 +27,7 @@ import java.nio.ByteBuffer;
>  /**
>   * Test SortField.CUSTOM sorts
>   */
> +@SuppressCodecs({"Lucene3x"})
>  public class TestCustomSort extends SolrTestCaseJ4 {
>
>    @BeforeClass
>
>
>