|
@@ -466,7 +466,8 @@ public class EsqlFunctionRegistry {
|
|
|
def(Kql.class, uni(Kql::new), "kql"),
|
|
|
def(Match.class, tri(Match::new), "match"),
|
|
|
def(MultiMatch.class, MultiMatch::new, "multi_match"),
|
|
|
- def(QueryString.class, bi(QueryString::new), "qstr") } };
|
|
|
+ def(QueryString.class, bi(QueryString::new), "qstr"),
|
|
|
+ def(MatchPhrase.class, tri(MatchPhrase::new), "match_phrase") } };
|
|
|
|
|
|
}
|
|
|
|
|
@@ -486,7 +487,6 @@ public class EsqlFunctionRegistry {
|
|
|
def(LastOverTime.class, LastOverTime::withUnresolvedTimestamp, "last_over_time"),
|
|
|
def(FirstOverTime.class, FirstOverTime::withUnresolvedTimestamp, "first_over_time"),
|
|
|
def(Term.class, bi(Term::new), "term"),
|
|
|
- def(MatchPhrase.class, tri(MatchPhrase::new), "match_phrase"),
|
|
|
def(Knn.class, tri(Knn::new), "knn") } };
|
|
|
}
|
|
|
|