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 c376155 commit 9e17d81Copy full SHA for 9e17d81
server/src/main/java/org/elasticsearch/index/fieldvisitor/IgnoredSourceFieldLoader.java
@@ -111,7 +111,8 @@ public Status needsField(FieldInfo fieldInfo) throws IOException {
111
public void binaryField(FieldInfo fieldInfo, byte[] value) throws IOException {
112
var result = IgnoredSourceFieldMapper.decodeIfMatch(value, potentialFieldsInIgnoreSource);
113
if (result != null) {
114
- done = true;
+ // TODO: can't do this in case multiple entries for the same field name. (objects, arrays etc.)
115
+// done = true;
116
values.add(result);
117
}
118
0 commit comments