mirror of https://github.com/apache/lucene.git
fix delimiter string
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1296786 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
cc1da9b073
commit
ff0650ffa4
|
@ -34,7 +34,7 @@ import org.apache.commons.lang.StringUtils;
|
||||||
/**
|
/**
|
||||||
* Concatenates multiple values for fields matching the specified
|
* Concatenates multiple values for fields matching the specified
|
||||||
* conditions using a configurable <code>delimiter</code> which defaults
|
* conditions using a configurable <code>delimiter</code> which defaults
|
||||||
* to "<code> ,</code>".
|
* to "<code>, </code>".
|
||||||
* <p>
|
* <p>
|
||||||
* By default, this processor concatenates the values for any field name
|
* By default, this processor concatenates the values for any field name
|
||||||
* which according to the schema is <code>multiValued="false"</code>
|
* which according to the schema is <code>multiValued="false"</code>
|
||||||
|
@ -45,7 +45,7 @@ import org.apache.commons.lang.StringUtils;
|
||||||
* For example, in the configuration below, any "single valued" string and
|
* For example, in the configuration below, any "single valued" string and
|
||||||
* text field which is found to contain multiple values <i>except</i> for
|
* text field which is found to contain multiple values <i>except</i> for
|
||||||
* the <code>primary_author</code> field will be concatenated using the
|
* the <code>primary_author</code> field will be concatenated using the
|
||||||
* string "<code> ;</code>" as a delimeter. For the
|
* string "<code>; </code>" as a delimeter. For the
|
||||||
* <code>primary_author</code> field, the multiple values will be left
|
* <code>primary_author</code> field, the multiple values will be left
|
||||||
* alone for <code>FirstFieldValueUpdateProcessorFactory</code> to deal with.
|
* alone for <code>FirstFieldValueUpdateProcessorFactory</code> to deal with.
|
||||||
* </p>
|
* </p>
|
||||||
|
|
Loading…
Reference in New Issue