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 356c6a8 commit 867051aCopy full SHA for 867051a
server/src/main/java/org/elasticsearch/search/fetch/StoredFieldsSpec.java
@@ -104,6 +104,10 @@ public StoredFieldsSpec merge(StoredFieldsSpec other) {
104
);
105
}
106
107
+ /**
108
+ * Returns the unique source paths that should be loaded from source. Other source paths may be filtered out.
109
+ * If an empty set is returned, then all source paths need to be loaded.
110
+ */
111
private Set<String> mergeSourcePaths(StoredFieldsSpec other) {
112
Set<String> mergedSourcePaths;
113
if (this.sourcePaths.isEmpty() == false && other.sourcePaths.isEmpty() == false) {
0 commit comments