Skip to content

Commit

Permalink
SQL: update SqlNodeSubclassTests list of min-two-parameters functions…
Browse files Browse the repository at this point in the history
… list (#53045) (#53058)

(cherry picked from commit c741e49)
  • Loading branch information
astefan authored Mar 3, 2020
1 parent d3a8ac6 commit 9ad9ad7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,6 @@ public void testTransform() throws Exception {
/**
* Test {@link Node#replaceChildren} implementation on {@link #subclass}.
*/
@AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/53011")
public void testReplaceChildren() throws Exception {
Constructor<T> ctor = longestCtor(subclass);
Object[] nodeCtorArgs = ctorArgs(ctor);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,8 +56,8 @@
public class SqlNodeSubclassTests<T extends B, B extends Node<B>> extends NodeSubclassTests<T, B> {

private static final List<Class<?>> CLASSES_WITH_MIN_TWO_CHILDREN = asList(Percentile.class, Percentiles.class, PercentileRanks.class,
Iif.class, IfConditional.class, IfNull.class, In.class, InPipe.class);

Iif.class, IfConditional.class, IfNull.class, In.class, InPipe.class,
org.elasticsearch.xpack.ql.expression.predicate.operator.comparison.In.class);

public SqlNodeSubclassTests(Class<T> subclass) {
super(subclass);
Expand Down

0 comments on commit 9ad9ad7

Please sign in to comment.