Skip to content

Commit d91cf10

Browse files
committed
data type fix
1 parent 45e96bb commit d91cf10

File tree

1 file changed

+1
-1
lines changed
  • x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/fulltext

1 file changed

+1
-1
lines changed

x-pack/plugin/esql/src/main/java/org/elasticsearch/xpack/esql/expression/function/fulltext/Score.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public class Score extends Function implements EvaluatorMapper {
4848
)
4949
public Score(
5050
Source source,
51-
@Param(name = "query", type = { "boolean", "keyword", "text" }, description = "full text function.") Expression scorableQuery
51+
@Param(name = "query", type = { "boolean" }, description = "(combinations of) full text function(s).") Expression scorableQuery
5252
) {
5353
this(source, List.of(scorableQuery));
5454
}

0 commit comments

Comments
 (0)