|
28 | 28 | import org.elasticsearch.xpack.sql.expression.gen.pipeline.Pipe;
|
29 | 29 | import org.elasticsearch.xpack.sql.expression.gen.processor.ConstantProcessor;
|
30 | 30 | import org.elasticsearch.xpack.sql.expression.gen.processor.Processor;
|
31 |
| -import org.elasticsearch.xpack.sql.expression.predicate.conditional.Iif; |
32 | 31 | import org.elasticsearch.xpack.sql.expression.predicate.conditional.IfConditional;
|
33 | 32 | import org.elasticsearch.xpack.sql.expression.predicate.conditional.IfNull;
|
| 33 | +import org.elasticsearch.xpack.sql.expression.predicate.conditional.Iif; |
34 | 34 | import org.elasticsearch.xpack.sql.expression.predicate.fulltext.FullTextPredicate;
|
35 | 35 | import org.elasticsearch.xpack.sql.expression.predicate.operator.comparison.In;
|
36 | 36 | import org.elasticsearch.xpack.sql.expression.predicate.operator.comparison.InPipe;
|
37 | 37 | import org.elasticsearch.xpack.sql.expression.predicate.regex.Like;
|
38 | 38 | import org.elasticsearch.xpack.sql.expression.predicate.regex.LikePattern;
|
39 |
| -import org.elasticsearch.xpack.sql.plan.logical.Pivot; |
40 | 39 | import org.elasticsearch.xpack.sql.tree.NodeTests.ChildrenAreAProperty;
|
41 | 40 | import org.elasticsearch.xpack.sql.tree.NodeTests.Dummy;
|
42 | 41 | import org.elasticsearch.xpack.sql.tree.NodeTests.NoChildren;
|
43 |
| -import org.junit.Assume; |
44 | 42 | import org.mockito.exceptions.base.MockitoException;
|
45 | 43 |
|
46 | 44 | import java.io.IOException;
|
@@ -166,9 +164,6 @@ public void testTransform() throws Exception {
|
166 | 164 | * Test {@link Node#replaceChildren} implementation on {@link #subclass}.
|
167 | 165 | */
|
168 | 166 | public void testReplaceChildren() throws Exception {
|
169 |
| - // TODO: Provide a proper fix for: https://github.com/elastic/elasticsearch/issues/48900 |
170 |
| - Assume.assumeFalse(subclass.equals(Pivot.class)); |
171 |
| - |
172 | 167 | Constructor<T> ctor = longestCtor(subclass);
|
173 | 168 | Object[] nodeCtorArgs = ctorArgs(ctor);
|
174 | 169 | T node = ctor.newInstance(nodeCtorArgs);
|
|
0 commit comments