You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by gu...@apache.org on 2019/03/07 13:01:28 UTC

[lucene-solr] branch master updated: SOLR-13296 fix doc example so that it can be accepted by Solr (previously caused error due to decreasing offsets)

This is an automated email from the ASF dual-hosted git repository.

gus pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/master by this push:
     new d2d3942  SOLR-13296 fix doc example so that it can be accepted by Solr (previously caused error due to decreasing offsets)
d2d3942 is described below

commit d2d3942721457ae4efc6985fab20db78e5bdfc16
Author: Gus Heck <gu...@apache.org>
AuthorDate: Thu Mar 7 08:01:01 2019 -0500

    SOLR-13296 fix doc example so that it can be accepted by Solr
    (previously caused error due to decreasing offsets)
---
 .../solr-ref-guide/src/working-with-external-files-and-processes.adoc | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/solr/solr-ref-guide/src/working-with-external-files-and-processes.adoc b/solr/solr-ref-guide/src/working-with-external-files-and-processes.adoc
index ae1bc55..06d2c0e 100644
--- a/solr/solr-ref-guide/src/working-with-external-files-and-processes.adoc
+++ b/solr/solr-ref-guide/src/working-with-external-files-and-processes.adoc
@@ -134,9 +134,9 @@ Any other key is silently ignored.
   "v":"1",
   "str":"test ąćęłńóśźż",
   "tokens": [
-    {"t":"one","s":123,"e":128,"i":22,"p":"DQ4KDQsODg8=","y":"word"},
     {"t":"two","s":5,"e":8,"i":1,"y":"word"},
-    {"t":"three","s":20,"e":22,"i":1,"y":"foobar"}
+    {"t":"three","s":20,"e":22,"i":1,"y":"foobar"},
+    {"t":"one","s":123,"e":128,"i":22,"p":"DQ4KDQsODg8=","y":"word"}
   ]
 }
 ----