You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by sa...@apache.org on 2017/07/17 23:42:59 UTC

[1/3] lucene-solr:branch_7x: SOLR-11101: Randomize PointFields in cloud-minimal test configset and all affected tests

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_7_0 6072288fa -> ce84ce1f6
  refs/heads/branch_7x 46e3d38ce -> db3439833
  refs/heads/master 192212670 -> 3110a5d06


SOLR-11101: Randomize PointFields in cloud-minimal test configset and all affected tests


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

Branch: refs/heads/branch_7x
Commit: db34398332ca12a117c6b96d672ccf08603b5ca5
Parents: 46e3d38
Author: Steve Rowe <sa...@apache.org>
Authored: Mon Jul 17 19:38:47 2017 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Mon Jul 17 19:40:42 2017 -0400

----------------------------------------------------------------------
 solr/CHANGES.txt                                                 | 1 +
 .../src/test-files/solr/configsets/cloud-minimal/conf/schema.xml | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/db343983/solr/CHANGES.txt
----------------------------------------------------------------------
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 62337d2..d521a1b 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -480,6 +480,7 @@ Other Changes
   - SOLR-11095: Randomize PointFields in doc-expiry & exitabe-directory test configsets (hossman)
   - SOLR-11097: Randomize PointFields in schema-id-and-version-fields-only.xml and all affected tests (hossman)
   - SOLR-11098: Randomize PointFields in cloud-managed-preanalyzed & schema-preanalyzed.xml and all affected tests (hossman)
+  - SOLR-11101: Randomize PointFields in "cloud-minimal" test configset and all affected tests (Steve Rowe)
 
 * SOLR-6807: Changed requestDispatcher's handleSelect to default to false, thus ignoring "qt".
   Simplified configs to not refer to handleSelect or "qt".  Switch all tests that assumed true to assume false

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/db343983/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml
----------------------------------------------------------------------
diff --git a/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml b/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml
index 08a1716..4124fea 100644
--- a/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml
+++ b/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml
@@ -17,8 +17,8 @@
 -->
 <schema name="minimal" version="1.1">
   <fieldType name="string" class="solr.StrField"/>
-  <fieldType name="int" class="solr.TrieIntField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-  <fieldType name="long" class="solr.TrieLongField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
+  <fieldType name="int" class="${solr.tests.IntegerFieldType}" docValues="${solr.tests.numeric.dv}" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
+  <fieldType name="long" class="${solr.tests.LongFieldType}" docValues="${solr.tests.numeric.dv}" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
   <dynamicField name="*" type="string" indexed="true" stored="true"/>
   <!-- for versioning -->
   <field name="_version_" type="long" indexed="true" stored="true"/>


[3/3] lucene-solr:master: SOLR-11101: Randomize PointFields in cloud-minimal test configset and all affected tests

Posted by sa...@apache.org.
SOLR-11101: Randomize PointFields in cloud-minimal test configset and all affected tests


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

Branch: refs/heads/master
Commit: 3110a5d06fcf85e4bd8789a1fefafc37e3d5a834
Parents: 1922126
Author: Steve Rowe <sa...@apache.org>
Authored: Mon Jul 17 19:38:47 2017 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Mon Jul 17 19:42:40 2017 -0400

----------------------------------------------------------------------
 solr/CHANGES.txt                                                 | 1 +
 .../src/test-files/solr/configsets/cloud-minimal/conf/schema.xml | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/3110a5d0/solr/CHANGES.txt
----------------------------------------------------------------------
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index 51d2fd7..ef0c7d6 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -497,6 +497,7 @@ Other Changes
   - SOLR-11095: Randomize PointFields in doc-expiry & exitabe-directory test configsets (hossman)
   - SOLR-11097: Randomize PointFields in schema-id-and-version-fields-only.xml and all affected tests (hossman)
   - SOLR-11098: Randomize PointFields in cloud-managed-preanalyzed & schema-preanalyzed.xml and all affected tests (hossman)
+  - SOLR-11101: Randomize PointFields in "cloud-minimal" test configset and all affected tests (Steve Rowe)
 
 * SOLR-6807: Changed requestDispatcher's handleSelect to default to false, thus ignoring "qt".
   Simplified configs to not refer to handleSelect or "qt".  Switch all tests that assumed true to assume false

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/3110a5d0/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml
----------------------------------------------------------------------
diff --git a/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml b/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml
index 08a1716..4124fea 100644
--- a/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml
+++ b/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml
@@ -17,8 +17,8 @@
 -->
 <schema name="minimal" version="1.1">
   <fieldType name="string" class="solr.StrField"/>
-  <fieldType name="int" class="solr.TrieIntField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-  <fieldType name="long" class="solr.TrieLongField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
+  <fieldType name="int" class="${solr.tests.IntegerFieldType}" docValues="${solr.tests.numeric.dv}" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
+  <fieldType name="long" class="${solr.tests.LongFieldType}" docValues="${solr.tests.numeric.dv}" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
   <dynamicField name="*" type="string" indexed="true" stored="true"/>
   <!-- for versioning -->
   <field name="_version_" type="long" indexed="true" stored="true"/>


[2/3] lucene-solr:branch_7_0: SOLR-11101: Randomize PointFields in cloud-minimal test configset and all affected tests

Posted by sa...@apache.org.
SOLR-11101: Randomize PointFields in cloud-minimal test configset and all affected tests


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

Branch: refs/heads/branch_7_0
Commit: ce84ce1f64adbcbae3583bfa6c55b62aa42c0eb7
Parents: 6072288
Author: Steve Rowe <sa...@apache.org>
Authored: Mon Jul 17 19:38:47 2017 -0400
Committer: Steve Rowe <sa...@apache.org>
Committed: Mon Jul 17 19:41:48 2017 -0400

----------------------------------------------------------------------
 solr/CHANGES.txt                                                 | 1 +
 .../src/test-files/solr/configsets/cloud-minimal/conf/schema.xml | 4 ++--
 2 files changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/ce84ce1f/solr/CHANGES.txt
----------------------------------------------------------------------
diff --git a/solr/CHANGES.txt b/solr/CHANGES.txt
index cf71a1b..3ef38c1 100644
--- a/solr/CHANGES.txt
+++ b/solr/CHANGES.txt
@@ -419,6 +419,7 @@ Other Changes
   - SOLR-11095: Randomize PointFields in doc-expiry & exitabe-directory test configsets (hossman)
   - SOLR-11097: Randomize PointFields in schema-id-and-version-fields-only.xml and all affected tests (hossman)
   - SOLR-11098: Randomize PointFields in cloud-managed-preanalyzed & schema-preanalyzed.xml and all affected tests (hossman)
+  - SOLR-11101: Randomize PointFields in "cloud-minimal" test configset and all affected tests (Steve Rowe)
 
 * SOLR-6807: Changed requestDispatcher's handleSelect to default to false, thus ignoring "qt".
   Simplified configs to not refer to handleSelect or "qt".  Switch all tests that assumed true to assume false

http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/ce84ce1f/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml
----------------------------------------------------------------------
diff --git a/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml b/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml
index 08a1716..4124fea 100644
--- a/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml
+++ b/solr/core/src/test-files/solr/configsets/cloud-minimal/conf/schema.xml
@@ -17,8 +17,8 @@
 -->
 <schema name="minimal" version="1.1">
   <fieldType name="string" class="solr.StrField"/>
-  <fieldType name="int" class="solr.TrieIntField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
-  <fieldType name="long" class="solr.TrieLongField" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
+  <fieldType name="int" class="${solr.tests.IntegerFieldType}" docValues="${solr.tests.numeric.dv}" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
+  <fieldType name="long" class="${solr.tests.LongFieldType}" docValues="${solr.tests.numeric.dv}" precisionStep="0" omitNorms="true" positionIncrementGap="0"/>
   <dynamicField name="*" type="string" indexed="true" stored="true"/>
   <!-- for versioning -->
   <field name="_version_" type="long" indexed="true" stored="true"/>