Skip to content

Commit c741e49

Browse files
authored
SQL: update SqlNodeSubclassTests list of min-two-parameters functions list (elastic#53045)
1 parent 24fe7e5 commit c741e49

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

x-pack/plugin/ql/src/test/java/org/elasticsearch/xpack/ql/tree/NodeSubclassTests.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,7 +158,6 @@ public void testTransform() throws Exception {
158158
/**
159159
* Test {@link Node#replaceChildren} implementation on {@link #subclass}.
160160
*/
161-
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/53011")
162161
public void testReplaceChildren() throws Exception {
163162
Constructor<T> ctor = longestCtor(subclass);
164163
Object[] nodeCtorArgs = ctorArgs(ctor);

x-pack/plugin/sql/src/test/java/org/elasticsearch/xpack/sql/tree/SqlNodeSubclassTests.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,8 +56,8 @@
5656
public class SqlNodeSubclassTests<T extends B, B extends Node<B>> extends NodeSubclassTests<T, B> {
5757

5858
private static final List<Class<?>> CLASSES_WITH_MIN_TWO_CHILDREN = asList(Percentile.class, Percentiles.class, PercentileRanks.class,
59-
Iif.class, IfConditional.class, IfNull.class, In.class, InPipe.class);
60-
59+
Iif.class, IfConditional.class, IfNull.class, In.class, InPipe.class,
60+
org.elasticsearch.xpack.ql.expression.predicate.operator.comparison.In.class);
6161

6262
public SqlNodeSubclassTests(Class<T> subclass) {
6363
super(subclass);

0 commit comments

Comments
 (0)