Skip to content

Commit 9e17d81

Browse files
committed
todo
1 parent c376155 commit 9e17d81

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

server/src/main/java/org/elasticsearch/index/fieldvisitor/IgnoredSourceFieldLoader.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,8 @@ public Status needsField(FieldInfo fieldInfo) throws IOException {
111111
public void binaryField(FieldInfo fieldInfo, byte[] value) throws IOException {
112112
var result = IgnoredSourceFieldMapper.decodeIfMatch(value, potentialFieldsInIgnoreSource);
113113
if (result != null) {
114-
done = true;
114+
// TODO: can't do this in case multiple entries for the same field name. (objects, arrays etc.)
115+
// done = true;
115116
values.add(result);
116117
}
117118
}

0 commit comments

Comments
 (0)