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

lucene-solr:jira/solr-5944: SOLR-5944: Making the *_i and *_l fields as docValues=true, since PointFields need DVs for sort

Repository: lucene-solr
Updated Branches:
  refs/heads/jira/solr-5944 0fb784cdb -> c192e69d6


SOLR-5944: Making the *_i and *_l fields as docValues=true, since PointFields need DVs for sort


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

Branch: refs/heads/jira/solr-5944
Commit: c192e69d66325359e5515afec7f30780a717c08a
Parents: 0fb784c
Author: Ishan Chattopadhyaya <is...@apache.org>
Authored: Fri Jan 20 17:46:53 2017 +0530
Committer: Ishan Chattopadhyaya <is...@apache.org>
Committed: Fri Jan 20 17:46:53 2017 +0530

----------------------------------------------------------------------
 .../test-files/solr/collection1/conf/schema-inplace-updates.xml  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/c192e69d/solr/core/src/test-files/solr/collection1/conf/schema-inplace-updates.xml
----------------------------------------------------------------------
diff --git a/solr/core/src/test-files/solr/collection1/conf/schema-inplace-updates.xml b/solr/core/src/test-files/solr/collection1/conf/schema-inplace-updates.xml
index fdb386d..4ed48f6 100644
--- a/solr/core/src/test-files/solr/collection1/conf/schema-inplace-updates.xml
+++ b/solr/core/src/test-files/solr/collection1/conf/schema-inplace-updates.xml
@@ -37,8 +37,8 @@
 
   <!-- dynamic fields that must *NOT* support in place updates -->
   <dynamicField name="*_s" type="string" indexed="true" stored="true"/>
-  <dynamicField name="*_i" type="int"    indexed="true" stored="true"/>
-  <dynamicField name="*_l" type="long"   indexed="true" stored="true"/>
+  <dynamicField name="*_i" type="int"    indexed="true" stored="true" docValues="true"/>
+  <dynamicField name="*_l" type="long"   indexed="true" stored="true" docValues="true"/>
   
   <!-- Copy fields -->