We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4113b9d commit 8a265f9Copy full SHA for 8a265f9
x-pack/plugin/spatial/src/main/java/org/elasticsearch/xpack/spatial/index/mapper/PointFieldMapper.java
@@ -245,7 +245,8 @@ public BlockLoader blockLoader(BlockLoaderContext blContext) {
245
return new BlockDocValuesReader.LongsBlockLoader(name());
246
}
247
248
- if (isSyntheticSource) {
+ // Multi fields don't have fallback synthetic source.s
249
+ if (isSyntheticSource && blContext.parentField(name()) == null) {
250
return blockLoaderFromFallbackSyntheticSource(blContext);
251
252
0 commit comments