Skip to content

Commit f1e7ec0

Browse files
committed
Spotless
1 parent 35193e3 commit f1e7ec0

File tree

2 files changed

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

2 files changed

+3
-5
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
@@ -67,7 +67,8 @@ public class Match extends FullTextFunction implements Validatable {
6767
IP,
6868
LONG,
6969
UNSIGNED_LONG,
70-
VERSION);
70+
VERSION
71+
);
7172

7273
@FunctionInfo(
7374
returnType = "boolean",

x-pack/plugin/esql/src/test/java/org/elasticsearch/xpack/esql/expression/function/fulltext/MatchTests.java

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,7 @@ public static Iterable<Object[]> parameters() {
5959

6060
protected static List<Set<DataType>> supportedParams() {
6161
Set<DataType> supportedTextParams = Set.of(DataType.KEYWORD, DataType.TEXT);
62-
List<Set<DataType>> supportedPerPosition = List.of(
63-
supportedTextParams,
64-
Match.DATA_TYPES
65-
);
62+
List<Set<DataType>> supportedPerPosition = List.of(supportedTextParams, Match.DATA_TYPES);
6663
return supportedPerPosition;
6764
}
6865

0 commit comments

Comments
 (0)