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 cd54bab commit 26413b8Copy full SHA for 26413b8
server/src/main/java/org/elasticsearch/search/fetch/FetchPhase.java
@@ -462,7 +462,7 @@ private static boolean shouldExcludeVectorsFromSource(SearchContext context) {
462
* Returns {@code null} when vectors should not be filtered out.
463
*/
464
private static SourceFilter maybeExcludeNonSemanticTextVectors(SearchContext context) {
465
- if (shouldExcludeVectorsFromSource(context)) {
+ if (shouldExcludeVectorsFromSource(context) == false) {
466
return null;
467
}
468
var lookup = context.getSearchExecutionContext().getMappingLookup();
0 commit comments