Skip to content

Commit

Permalink
line len
Browse files Browse the repository at this point in the history
  • Loading branch information
jimczi committed Dec 6, 2024
1 parent c8679d7 commit 236c6a3
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1111,7 +1111,12 @@ private static Query generateNestedTermSparseVectorQuery(NestedLookup nestedLook
}
queryBuilder.add(new BooleanClause(mapper.nestedTypeFilter(), BooleanClause.Occur.FILTER));

return new ESToParentBlockJoinQuery(new SparseVectorQueryWrapper(fieldName, queryBuilder.build()), parentFilter, ScoreMode.Total, null);
return new ESToParentBlockJoinQuery(
new SparseVectorQueryWrapper(fieldName, queryBuilder.build()),
parentFilter,
ScoreMode.Total,
null
);
}

private static void assertChildLeafNestedDocument(
Expand Down

0 comments on commit 236c6a3

Please sign in to comment.