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

[lucene-solr] branch branch_8_0 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.

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


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

commit 48f2ddc4ff888a6b818180babb4d3f7187366cd9
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"}
   ]
 }
 ----