You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2016/04/18 14:52:08 UTC

lucene-solr:master: don't use DirectPostingsFormat for Legacy geopoint tests: it just uses tons of RAM

Repository: lucene-solr
Updated Branches:
  refs/heads/master c57db0258 -> 730a04723


don't use DirectPostingsFormat for Legacy geopoint tests: it just uses tons of RAM


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/730a0472
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/730a0472
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/730a0472

Branch: refs/heads/master
Commit: 730a04723ff6d6475ffac9ed1586ced02941fa15
Parents: c57db02
Author: Robert Muir <rm...@apache.org>
Authored: Mon Apr 18 08:51:41 2016 -0400
Committer: Robert Muir <rm...@apache.org>
Committed: Mon Apr 18 08:51:41 2016 -0400

----------------------------------------------------------------------
 .../lucene/spatial/geopoint/search/TestLegacyGeoPointQuery.java    | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/730a0472/lucene/spatial/src/test/org/apache/lucene/spatial/geopoint/search/TestLegacyGeoPointQuery.java
----------------------------------------------------------------------
diff --git a/lucene/spatial/src/test/org/apache/lucene/spatial/geopoint/search/TestLegacyGeoPointQuery.java b/lucene/spatial/src/test/org/apache/lucene/spatial/geopoint/search/TestLegacyGeoPointQuery.java
index e56e28b..8766c0e 100644
--- a/lucene/spatial/src/test/org/apache/lucene/spatial/geopoint/search/TestLegacyGeoPointQuery.java
+++ b/lucene/spatial/src/test/org/apache/lucene/spatial/geopoint/search/TestLegacyGeoPointQuery.java
@@ -24,12 +24,14 @@ import org.apache.lucene.geo.Polygon;
 import org.apache.lucene.geo.Rectangle;
 import org.apache.lucene.spatial.geopoint.document.GeoPointField;
 import org.apache.lucene.spatial.geopoint.document.GeoPointField.TermEncoding;
+import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
 
 /**
  * random testing for GeoPoint query logic (with deprecated numeric encoding)
  * @deprecated remove this when TermEncoding.NUMERIC is removed
  */
 @Deprecated
+@SuppressCodecs("Direct") // can easily create too many postings and blow direct sky high
 public class TestLegacyGeoPointQuery extends BaseGeoPointTestCase {
   
   @Override