Skip to content

Commit 0678ff4

Browse files
committed
Fix merge
1 parent d9bc4ce commit 0678ff4

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,8 @@ public class Match extends FullTextFunction implements Validatable {
9191
@FunctionInfo(
9292
returnType = "boolean",
9393
preview = true,
94-
description = "Performs a <<query-dsl-match-query,match query>> on the specified field. Returns true if the provided query matches the row.",
94+
description = "Performs a <<query-dsl-match-query,match query>> on the specified field. "
95+
+ "Returns true if the provided query matches the row.",
9596
examples = { @Example(file = "match-function", tag = "match-with-field") }
9697
)
9798
public Match(

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ public class QueryString extends FullTextFunction {
3232
@FunctionInfo(
3333
returnType = "boolean",
3434
preview = true,
35-
description = "Performs a <<query-dsl-query-string-query,query string query>>. Returns true if the provided query string matches the row.",
35+
description = "Performs a <<query-dsl-query-string-query,query string query>>. "
36+
+ "Returns true if the provided query string matches the row.",
3637
examples = { @Example(file = "qstr-function", tag = "qstr-with-field") }
3738
)
3839
public QueryString(

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/optimizer/LocalPhysicalPlanOptimizerTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -45,8 +45,8 @@
4545
import org.elasticsearch.xpack.esql.expression.function.fulltext.Match;
4646
import org.elasticsearch.xpack.esql.index.EsIndex;
4747
import org.elasticsearch.xpack.esql.index.IndexResolution;
48-
import org.elasticsearch.xpack.esql.parser.ParsingException;
4948
import org.elasticsearch.xpack.esql.optimizer.rules.logical.ExtractAggregateCommonFilter;
49+
import org.elasticsearch.xpack.esql.parser.ParsingException;
5050
import org.elasticsearch.xpack.esql.plan.logical.Enrich;
5151
import org.elasticsearch.xpack.esql.plan.logical.LogicalPlan;
5252
import org.elasticsearch.xpack.esql.plan.physical.AggregateExec;
@@ -75,8 +75,8 @@
7575
import org.junit.Before;
7676

7777
import java.io.IOException;
78-
import java.util.Collection;
7978
import java.util.ArrayList;
79+
import java.util.Collection;
8080
import java.util.List;
8181
import java.util.Locale;
8282
import java.util.Map;

0 commit comments

Comments
 (0)