Fixes a bug in TextFieldMapper serialization when index is false, and adds a base-class test to ensure that all field mappers are tested against all variations with defaults both included and excluded. Fixes #58188
This commit is contained in:
parent
50b391e91b
commit
4b8cf2af6a
|
@ -72,6 +72,10 @@ public class ScaledFloatFieldMapper extends FieldMapper {
|
||||||
public static final String CONTENT_TYPE = "scaled_float";
|
public static final String CONTENT_TYPE = "scaled_float";
|
||||||
// use the same default as numbers
|
// use the same default as numbers
|
||||||
private static final Setting<Boolean> COERCE_SETTING = NumberFieldMapper.COERCE_SETTING;
|
private static final Setting<Boolean> COERCE_SETTING = NumberFieldMapper.COERCE_SETTING;
|
||||||
|
private static final FieldType FIELD_TYPE = new FieldType();
|
||||||
|
static {
|
||||||
|
FIELD_TYPE.setIndexOptions(IndexOptions.DOCS);
|
||||||
|
}
|
||||||
|
|
||||||
public static class Builder extends FieldMapper.Builder<Builder> {
|
public static class Builder extends FieldMapper.Builder<Builder> {
|
||||||
|
|
||||||
|
@ -82,7 +86,7 @@ public class ScaledFloatFieldMapper extends FieldMapper {
|
||||||
private Double nullValue;
|
private Double nullValue;
|
||||||
|
|
||||||
public Builder(String name) {
|
public Builder(String name) {
|
||||||
super(name, new FieldType());
|
super(name, FIELD_TYPE);
|
||||||
builder = this;
|
builder = this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@ public class RankFeatureFieldMapperTests extends FieldMapperTestCase<RankFeature
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Set<String> unsupportedProperties() {
|
protected Set<String> unsupportedProperties() {
|
||||||
return org.elasticsearch.common.collect.Set.of("analyzer", "similarity", "store", "doc_values");
|
return org.elasticsearch.common.collect.Set.of("analyzer", "similarity", "store", "doc_values", "index");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
|
|
|
@ -40,7 +40,7 @@ public class RankFeaturesFieldMapperTests extends FieldMapperTestCase<RankFeatur
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Set<String> unsupportedProperties() {
|
protected Set<String> unsupportedProperties() {
|
||||||
return org.elasticsearch.common.collect.Set.of("analyzer", "similarity", "store", "doc_values");
|
return org.elasticsearch.common.collect.Set.of("analyzer", "similarity", "store", "doc_values", "index");
|
||||||
}
|
}
|
||||||
|
|
||||||
IndexService indexService;
|
IndexService indexService;
|
||||||
|
|
|
@ -658,7 +658,7 @@ public class ICUCollationKeywordFieldMapper extends FieldMapper {
|
||||||
@Override
|
@Override
|
||||||
protected void doXContentBody(XContentBuilder builder, boolean includeDefaults, Params params) throws IOException {
|
protected void doXContentBody(XContentBuilder builder, boolean includeDefaults, Params params) throws IOException {
|
||||||
super.doXContentBody(builder, includeDefaults, params);
|
super.doXContentBody(builder, includeDefaults, params);
|
||||||
if (includeDefaults || (mappedFieldType.isSearchable() && fieldType.indexOptions() != IndexOptions.DOCS)) {
|
if (fieldType.indexOptions() != IndexOptions.NONE && (includeDefaults || fieldType.indexOptions() != IndexOptions.DOCS)) {
|
||||||
builder.field("index_options", indexOptionToString(fieldType.indexOptions()));
|
builder.field("index_options", indexOptionToString(fieldType.indexOptions()));
|
||||||
}
|
}
|
||||||
if (nullValue != null) {
|
if (nullValue != null) {
|
||||||
|
|
|
@ -58,7 +58,7 @@ public class Murmur3FieldMapperTests extends FieldMapperTestCase<Murmur3FieldMap
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Set<String> unsupportedProperties() {
|
protected Set<String> unsupportedProperties() {
|
||||||
return org.elasticsearch.common.collect.Set.of("analyzer", "similarity", "doc_values");
|
return org.elasticsearch.common.collect.Set.of("analyzer", "similarity", "doc_values", "index");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
|
|
|
@ -148,9 +148,11 @@ public class SimpleGetFieldMappingsIT extends ESIntegTestCase {
|
||||||
public void testSimpleGetFieldMappingsWithDefaults() throws Exception {
|
public void testSimpleGetFieldMappingsWithDefaults() throws Exception {
|
||||||
assertAcked(prepareCreate("test").addMapping("type", getMappingForType("type")));
|
assertAcked(prepareCreate("test").addMapping("type", getMappingForType("type")));
|
||||||
client().admin().indices().preparePutMapping("test").setType("type").setSource("num", "type=long").get();
|
client().admin().indices().preparePutMapping("test").setType("type").setSource("num", "type=long").get();
|
||||||
|
client().admin().indices().preparePutMapping("test").setType("type")
|
||||||
|
.setSource("field2", "type=text,index=false").get();
|
||||||
|
|
||||||
GetFieldMappingsResponse response = client().admin().indices().prepareGetFieldMappings()
|
GetFieldMappingsResponse response = client().admin().indices().prepareGetFieldMappings()
|
||||||
.setFields("num", "field1", "obj.subfield").includeDefaults(true).get();
|
.setFields("num", "field1", "field2", "obj.subfield").includeDefaults(true).get();
|
||||||
|
|
||||||
assertThat((Map<String, Object>) response.fieldMappings("test", "type", "num").sourceAsMap().get("num"),
|
assertThat((Map<String, Object>) response.fieldMappings("test", "type", "num").sourceAsMap().get("num"),
|
||||||
hasEntry("index", Boolean.TRUE));
|
hasEntry("index", Boolean.TRUE));
|
||||||
|
@ -160,6 +162,8 @@ public class SimpleGetFieldMappingsIT extends ESIntegTestCase {
|
||||||
hasEntry("index", Boolean.TRUE));
|
hasEntry("index", Boolean.TRUE));
|
||||||
assertThat((Map<String, Object>) response.fieldMappings("test", "type", "field1").sourceAsMap().get("field1"),
|
assertThat((Map<String, Object>) response.fieldMappings("test", "type", "field1").sourceAsMap().get("field1"),
|
||||||
hasEntry("type", "text"));
|
hasEntry("type", "text"));
|
||||||
|
assertThat((Map<String, Object>) response.fieldMappings("test", "type", "field2").sourceAsMap().get("field2"),
|
||||||
|
hasEntry("type", "text"));
|
||||||
assertThat((Map<String, Object>) response.fieldMappings("test", "type", "obj.subfield").sourceAsMap().get("subfield"),
|
assertThat((Map<String, Object>) response.fieldMappings("test", "type", "obj.subfield").sourceAsMap().get("subfield"),
|
||||||
hasEntry("type", "keyword"));
|
hasEntry("type", "keyword"));
|
||||||
}
|
}
|
||||||
|
|
|
@ -19,6 +19,7 @@
|
||||||
package org.elasticsearch.index.mapper;
|
package org.elasticsearch.index.mapper;
|
||||||
|
|
||||||
import org.apache.lucene.document.FieldType;
|
import org.apache.lucene.document.FieldType;
|
||||||
|
import org.apache.lucene.index.IndexOptions;
|
||||||
import org.apache.lucene.index.IndexableField;
|
import org.apache.lucene.index.IndexableField;
|
||||||
import org.apache.lucene.index.Term;
|
import org.apache.lucene.index.Term;
|
||||||
import org.apache.lucene.search.DocValuesFieldExistsQuery;
|
import org.apache.lucene.search.DocValuesFieldExistsQuery;
|
||||||
|
@ -61,6 +62,7 @@ public abstract class AbstractGeometryFieldMapper<Parsed, Processed> extends Fie
|
||||||
static {
|
static {
|
||||||
FIELD_TYPE.setStored(false);
|
FIELD_TYPE.setStored(false);
|
||||||
FIELD_TYPE.setOmitNorms(true);
|
FIELD_TYPE.setOmitNorms(true);
|
||||||
|
FIELD_TYPE.setIndexOptions(IndexOptions.DOCS);
|
||||||
FIELD_TYPE.freeze();
|
FIELD_TYPE.freeze();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -22,6 +22,7 @@ import org.apache.lucene.document.FieldType;
|
||||||
import org.apache.lucene.document.LatLonDocValuesField;
|
import org.apache.lucene.document.LatLonDocValuesField;
|
||||||
import org.apache.lucene.document.LatLonPoint;
|
import org.apache.lucene.document.LatLonPoint;
|
||||||
import org.apache.lucene.document.StoredField;
|
import org.apache.lucene.document.StoredField;
|
||||||
|
import org.apache.lucene.index.IndexOptions;
|
||||||
import org.apache.lucene.index.IndexableField;
|
import org.apache.lucene.index.IndexableField;
|
||||||
import org.elasticsearch.ElasticsearchParseException;
|
import org.elasticsearch.ElasticsearchParseException;
|
||||||
import org.elasticsearch.common.Explicit;
|
import org.elasticsearch.common.Explicit;
|
||||||
|
@ -49,6 +50,7 @@ public class GeoPointFieldMapper extends AbstractPointGeometryFieldMapper<List<?
|
||||||
public static final FieldType FIELD_TYPE = new FieldType();
|
public static final FieldType FIELD_TYPE = new FieldType();
|
||||||
static {
|
static {
|
||||||
FIELD_TYPE.setStored(false);
|
FIELD_TYPE.setStored(false);
|
||||||
|
FIELD_TYPE.setIndexOptions(IndexOptions.DOCS);
|
||||||
FIELD_TYPE.freeze();
|
FIELD_TYPE.freeze();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -20,6 +20,7 @@ package org.elasticsearch.index.mapper;
|
||||||
|
|
||||||
import org.apache.lucene.document.FieldType;
|
import org.apache.lucene.document.FieldType;
|
||||||
import org.apache.lucene.document.LatLonShape;
|
import org.apache.lucene.document.LatLonShape;
|
||||||
|
import org.apache.lucene.index.IndexOptions;
|
||||||
import org.elasticsearch.common.Explicit;
|
import org.elasticsearch.common.Explicit;
|
||||||
import org.elasticsearch.common.geo.GeometryParser;
|
import org.elasticsearch.common.geo.GeometryParser;
|
||||||
import org.elasticsearch.common.geo.builders.ShapeBuilder;
|
import org.elasticsearch.common.geo.builders.ShapeBuilder;
|
||||||
|
@ -54,6 +55,7 @@ public class GeoShapeFieldMapper extends AbstractShapeGeometryFieldMapper<Geomet
|
||||||
public static final FieldType FIELD_TYPE = new FieldType();
|
public static final FieldType FIELD_TYPE = new FieldType();
|
||||||
static {
|
static {
|
||||||
FIELD_TYPE.setDimensions(7, 4, Integer.BYTES);
|
FIELD_TYPE.setDimensions(7, 4, Integer.BYTES);
|
||||||
|
FIELD_TYPE.setIndexOptions(IndexOptions.DOCS);
|
||||||
FIELD_TYPE.setOmitNorms(true);
|
FIELD_TYPE.setOmitNorms(true);
|
||||||
FIELD_TYPE.freeze();
|
FIELD_TYPE.freeze();
|
||||||
}
|
}
|
||||||
|
|
|
@ -23,6 +23,7 @@ import org.apache.lucene.document.FieldType;
|
||||||
import org.apache.lucene.document.InetAddressPoint;
|
import org.apache.lucene.document.InetAddressPoint;
|
||||||
import org.apache.lucene.document.SortedSetDocValuesField;
|
import org.apache.lucene.document.SortedSetDocValuesField;
|
||||||
import org.apache.lucene.document.StoredField;
|
import org.apache.lucene.document.StoredField;
|
||||||
|
import org.apache.lucene.index.IndexOptions;
|
||||||
import org.apache.lucene.index.SortedSetDocValues;
|
import org.apache.lucene.index.SortedSetDocValues;
|
||||||
import org.apache.lucene.index.Term;
|
import org.apache.lucene.index.Term;
|
||||||
import org.apache.lucene.search.DocValuesFieldExistsQuery;
|
import org.apache.lucene.search.DocValuesFieldExistsQuery;
|
||||||
|
@ -63,6 +64,7 @@ public class IpFieldMapper extends FieldMapper {
|
||||||
public static final FieldType FIELD_TYPE = new FieldType();
|
public static final FieldType FIELD_TYPE = new FieldType();
|
||||||
static {
|
static {
|
||||||
FIELD_TYPE.setDimensions(1, Integer.BYTES);
|
FIELD_TYPE.setDimensions(1, Integer.BYTES);
|
||||||
|
FIELD_TYPE.setIndexOptions(IndexOptions.DOCS);
|
||||||
FIELD_TYPE.freeze();
|
FIELD_TYPE.freeze();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -428,7 +428,8 @@ public final class KeywordFieldMapper extends FieldMapper {
|
||||||
protected void doXContentBody(XContentBuilder builder, boolean includeDefaults, Params params) throws IOException {
|
protected void doXContentBody(XContentBuilder builder, boolean includeDefaults, Params params) throws IOException {
|
||||||
super.doXContentBody(builder, includeDefaults, params);
|
super.doXContentBody(builder, includeDefaults, params);
|
||||||
|
|
||||||
if (includeDefaults || (mappedFieldType.isSearchable() && fieldType.indexOptions() != IndexOptions.DOCS)) {
|
if (fieldType.indexOptions() != IndexOptions.NONE
|
||||||
|
&& (includeDefaults || fieldType.indexOptions() != Defaults.FIELD_TYPE.indexOptions())) {
|
||||||
builder.field("index_options", indexOptionToString(fieldType.indexOptions()));
|
builder.field("index_options", indexOptionToString(fieldType.indexOptions()));
|
||||||
}
|
}
|
||||||
if (nullValue != null) {
|
if (nullValue != null) {
|
||||||
|
|
|
@ -79,6 +79,7 @@ public class NumberFieldMapper extends FieldMapper {
|
||||||
public static final FieldType FIELD_TYPE = new FieldType();
|
public static final FieldType FIELD_TYPE = new FieldType();
|
||||||
static {
|
static {
|
||||||
FIELD_TYPE.setStored(false);
|
FIELD_TYPE.setStored(false);
|
||||||
|
FIELD_TYPE.setIndexOptions(IndexOptions.DOCS);
|
||||||
FIELD_TYPE.freeze();
|
FIELD_TYPE.freeze();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
package org.elasticsearch.index.mapper;
|
package org.elasticsearch.index.mapper;
|
||||||
|
|
||||||
import org.apache.lucene.document.FieldType;
|
import org.apache.lucene.document.FieldType;
|
||||||
|
import org.apache.lucene.index.IndexOptions;
|
||||||
import org.apache.lucene.index.Term;
|
import org.apache.lucene.index.Term;
|
||||||
import org.apache.lucene.search.BoostQuery;
|
import org.apache.lucene.search.BoostQuery;
|
||||||
import org.apache.lucene.search.DocValuesFieldExistsQuery;
|
import org.apache.lucene.search.DocValuesFieldExistsQuery;
|
||||||
|
@ -75,6 +76,7 @@ public class RangeFieldMapper extends FieldMapper {
|
||||||
public static final FieldType FIELD_TYPE = new FieldType();
|
public static final FieldType FIELD_TYPE = new FieldType();
|
||||||
static {
|
static {
|
||||||
FIELD_TYPE.setStored(false);
|
FIELD_TYPE.setStored(false);
|
||||||
|
FIELD_TYPE.setIndexOptions(IndexOptions.DOCS);
|
||||||
FIELD_TYPE.freeze();
|
FIELD_TYPE.freeze();
|
||||||
}
|
}
|
||||||
public static final DateFormatter DATE_FORMATTER = DateFieldMapper.DEFAULT_DATE_TIME_FORMATTER;
|
public static final DateFormatter DATE_FORMATTER = DateFieldMapper.DEFAULT_DATE_TIME_FORMATTER;
|
||||||
|
|
|
@ -920,7 +920,8 @@ public class TextFieldMapper extends FieldMapper {
|
||||||
@Override
|
@Override
|
||||||
protected void doXContentBody(XContentBuilder builder, boolean includeDefaults, Params params) throws IOException {
|
protected void doXContentBody(XContentBuilder builder, boolean includeDefaults, Params params) throws IOException {
|
||||||
super.doXContentBody(builder, includeDefaults, params);
|
super.doXContentBody(builder, includeDefaults, params);
|
||||||
if (includeDefaults || (mappedFieldType.isSearchable() && fieldType.indexOptions() != Defaults.FIELD_TYPE.indexOptions())) {
|
if (fieldType.indexOptions() != IndexOptions.NONE
|
||||||
|
&& (includeDefaults || fieldType.indexOptions() != Defaults.FIELD_TYPE.indexOptions())) {
|
||||||
builder.field("index_options", indexOptionToString(fieldType.indexOptions()));
|
builder.field("index_options", indexOptionToString(fieldType.indexOptions()));
|
||||||
}
|
}
|
||||||
if (includeDefaults || fieldType.storeTermVectors() != Defaults.FIELD_TYPE.storeTermVectors()) {
|
if (includeDefaults || fieldType.storeTermVectors() != Defaults.FIELD_TYPE.storeTermVectors()) {
|
||||||
|
|
|
@ -47,7 +47,7 @@ public class BinaryFieldMapperTests extends FieldMapperTestCase<BinaryFieldMappe
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Set<String> unsupportedProperties() {
|
protected Set<String> unsupportedProperties() {
|
||||||
return org.elasticsearch.common.collect.Set.of("analyzer", "eager_global_ordinals", "norms", "similarity");
|
return org.elasticsearch.common.collect.Set.of("analyzer", "eager_global_ordinals", "norms", "similarity", "index");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -83,7 +83,7 @@ public class CompletionFieldMapperTests extends FieldMapperTestCase<CompletionFi
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Set<String> unsupportedProperties() {
|
protected Set<String> unsupportedProperties() {
|
||||||
return org.elasticsearch.common.collect.Set.of("doc_values");
|
return org.elasticsearch.common.collect.Set.of("doc_values", "index");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -95,6 +95,7 @@ public abstract class FieldMapperTestCase<T extends FieldMapper.Builder<?>> exte
|
||||||
b.docValues(false);
|
b.docValues(false);
|
||||||
}),
|
}),
|
||||||
booleanModifier("eager_global_ordinals", true, (a, t) -> a.setEagerGlobalOrdinals(t)),
|
booleanModifier("eager_global_ordinals", true, (a, t) -> a.setEagerGlobalOrdinals(t)),
|
||||||
|
booleanModifier("index", false, (a, t) -> a.index(t)),
|
||||||
booleanModifier("norms", false, FieldMapper.Builder::omitNorms),
|
booleanModifier("norms", false, FieldMapper.Builder::omitNorms),
|
||||||
new Modifier("search_analyzer", true, (a, b) -> {
|
new Modifier("search_analyzer", true, (a, b) -> {
|
||||||
a.searchAnalyzer(new NamedAnalyzer("standard", AnalyzerScope.INDEX, new StandardAnalyzer()));
|
a.searchAnalyzer(new NamedAnalyzer("standard", AnalyzerScope.INDEX, new StandardAnalyzer()));
|
||||||
|
@ -228,22 +229,27 @@ public abstract class FieldMapperTestCase<T extends FieldMapper.Builder<?>> exte
|
||||||
|
|
||||||
Mapper.BuilderContext context = new Mapper.BuilderContext(SETTINGS, new ContentPath(1));
|
Mapper.BuilderContext context = new Mapper.BuilderContext(SETTINGS, new ContentPath(1));
|
||||||
|
|
||||||
XContentBuilder x = JsonXContent.contentBuilder();
|
String mappings = mappingsToString(builder.build(context), false);
|
||||||
x.startObject().startObject("properties");
|
String mappingsWithDefault = mappingsToString(builder.build(context), true);
|
||||||
builder.build(context).toXContent(x, ToXContent.EMPTY_PARAMS);
|
|
||||||
x.endObject().endObject();
|
|
||||||
String mappings = Strings.toString(x);
|
|
||||||
|
|
||||||
mapperService.merge("_doc", new CompressedXContent(mappings), MapperService.MergeReason.MAPPING_UPDATE);
|
mapperService.merge("_doc", new CompressedXContent(mappings), MapperService.MergeReason.MAPPING_UPDATE);
|
||||||
|
|
||||||
Mapper rebuilt = mapperService.documentMapper().mappers().getMapper(builder.name);
|
Mapper rebuilt = mapperService.documentMapper().mappers().getMapper(builder.name);
|
||||||
x = JsonXContent.contentBuilder();
|
String reparsed = mappingsToString(rebuilt, false);
|
||||||
x.startObject().startObject("properties");
|
String reparsedWithDefault = mappingsToString(rebuilt, true);
|
||||||
rebuilt.toXContent(x, ToXContent.EMPTY_PARAMS);
|
|
||||||
x.endObject().endObject();
|
|
||||||
String reparsed = Strings.toString(x);
|
|
||||||
|
|
||||||
assertThat(reparsed, equalTo(mappings));
|
assertThat(reparsed, equalTo(mappings));
|
||||||
|
assertThat(reparsedWithDefault, equalTo(mappingsWithDefault));
|
||||||
|
}
|
||||||
|
|
||||||
|
private String mappingsToString(ToXContent builder, boolean includeDefaults) throws IOException {
|
||||||
|
ToXContent.Params params = includeDefaults ?
|
||||||
|
new ToXContent.MapParams(Collections.singletonMap("include_defaults", "true")) : ToXContent.EMPTY_PARAMS;
|
||||||
|
XContentBuilder x = JsonXContent.contentBuilder();
|
||||||
|
x.startObject().startObject("properties");
|
||||||
|
builder.toXContent(x, params);
|
||||||
|
x.endObject().endObject();
|
||||||
|
return Strings.toString(x);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -37,7 +37,7 @@ public class HistogramFieldMapperTests extends FieldMapperTestCase<HistogramFiel
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Set<String> unsupportedProperties() {
|
protected Set<String> unsupportedProperties() {
|
||||||
return org.elasticsearch.common.collect.Set.of("analyzer", "similarity", "doc_values", "store");
|
return org.elasticsearch.common.collect.Set.of("analyzer", "similarity", "doc_values", "store", "index");
|
||||||
}
|
}
|
||||||
|
|
||||||
public void testParseValue() throws Exception {
|
public void testParseValue() throws Exception {
|
||||||
|
|
|
@ -69,6 +69,8 @@ public class ConstantKeywordFieldMapper extends FieldMapper {
|
||||||
builder = this;
|
builder = this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// TODO we should ban setting 'index' on constant keyword
|
||||||
|
|
||||||
public Builder setValue(String value) {
|
public Builder setValue(String value) {
|
||||||
this.value = value;
|
this.value = value;
|
||||||
return this;
|
return this;
|
||||||
|
|
|
@ -36,7 +36,7 @@ public class ConstantKeywordFieldMapperTests extends FieldMapperTestCase<Constan
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Set<String> unsupportedProperties() {
|
protected Set<String> unsupportedProperties() {
|
||||||
return org.elasticsearch.common.collect.Set.of("analyzer", "similarity", "store", "doc_values");
|
return org.elasticsearch.common.collect.Set.of("analyzer", "similarity", "store", "doc_values", "index");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|
|
@ -633,7 +633,8 @@ public final class FlatObjectFieldMapper extends DynamicKeyFieldMapper {
|
||||||
@Override
|
@Override
|
||||||
protected void doXContentBody(XContentBuilder builder, boolean includeDefaults, Params params) throws IOException {
|
protected void doXContentBody(XContentBuilder builder, boolean includeDefaults, Params params) throws IOException {
|
||||||
super.doXContentBody(builder, includeDefaults, params);
|
super.doXContentBody(builder, includeDefaults, params);
|
||||||
if (includeDefaults || mappedFieldType.isSearchable() && fieldType.indexOptions() != Defaults.FIELD_TYPE.indexOptions()) {
|
if (fieldType.indexOptions() != IndexOptions.NONE
|
||||||
|
&& (includeDefaults || fieldType.indexOptions() != Defaults.FIELD_TYPE.indexOptions())) {
|
||||||
builder.field("index_options", indexOptionToString(fieldType.indexOptions()));
|
builder.field("index_options", indexOptionToString(fieldType.indexOptions()));
|
||||||
}
|
}
|
||||||
if (includeDefaults || depthLimit != Defaults.DEPTH_LIMIT) {
|
if (includeDefaults || depthLimit != Defaults.DEPTH_LIMIT) {
|
||||||
|
|
|
@ -9,6 +9,7 @@ package org.elasticsearch.xpack.spatial.index.mapper;
|
||||||
import org.apache.lucene.document.FieldType;
|
import org.apache.lucene.document.FieldType;
|
||||||
import org.apache.lucene.document.LatLonShape;
|
import org.apache.lucene.document.LatLonShape;
|
||||||
import org.apache.lucene.document.ShapeField;
|
import org.apache.lucene.document.ShapeField;
|
||||||
|
import org.apache.lucene.index.IndexOptions;
|
||||||
import org.apache.lucene.index.IndexableField;
|
import org.apache.lucene.index.IndexableField;
|
||||||
import org.apache.lucene.util.BytesRef;
|
import org.apache.lucene.util.BytesRef;
|
||||||
import org.elasticsearch.Version;
|
import org.elasticsearch.Version;
|
||||||
|
@ -60,13 +61,17 @@ import java.util.Map;
|
||||||
*/
|
*/
|
||||||
public class GeoShapeWithDocValuesFieldMapper extends GeoShapeFieldMapper {
|
public class GeoShapeWithDocValuesFieldMapper extends GeoShapeFieldMapper {
|
||||||
public static final String CONTENT_TYPE = "geo_shape";
|
public static final String CONTENT_TYPE = "geo_shape";
|
||||||
|
public static final FieldType FIELD_TYPE = new FieldType();
|
||||||
|
static {
|
||||||
|
FIELD_TYPE.setIndexOptions(IndexOptions.DOCS);
|
||||||
|
}
|
||||||
|
|
||||||
public static class Builder extends AbstractShapeGeometryFieldMapper.Builder<Builder, GeoShapeWithDocValuesFieldType> {
|
public static class Builder extends AbstractShapeGeometryFieldMapper.Builder<Builder, GeoShapeWithDocValuesFieldType> {
|
||||||
|
|
||||||
private boolean docValuesSet = false;
|
private boolean docValuesSet = false;
|
||||||
|
|
||||||
public Builder(String name) {
|
public Builder(String name) {
|
||||||
super (name, new FieldType());
|
super (name, FIELD_TYPE);
|
||||||
this.hasDocValues = true;
|
this.hasDocValues = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -52,7 +52,7 @@ public class DenseVectorFieldMapperTests extends FieldMapperTestCase<DenseVector
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Set<String> unsupportedProperties() {
|
protected Set<String> unsupportedProperties() {
|
||||||
return org.elasticsearch.common.collect.Set.of("analyzer", "similarity", "doc_values", "store");
|
return org.elasticsearch.common.collect.Set.of("analyzer", "similarity", "doc_values", "store", "index");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
|
|
|
@ -47,7 +47,7 @@ public class SparseVectorFieldMapperTests extends FieldMapperTestCase<SparseVect
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected Set<String> unsupportedProperties() {
|
protected Set<String> unsupportedProperties() {
|
||||||
return org.elasticsearch.common.collect.Set.of("analyzer", "similarity", "doc_values", "store");
|
return org.elasticsearch.common.collect.Set.of("analyzer", "similarity", "doc_values", "store", "index");
|
||||||
}
|
}
|
||||||
|
|
||||||
@Before
|
@Before
|
||||||
|
|
Loading…
Reference in New Issue