-
Notifications
You must be signed in to change notification settings - Fork 24.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
SQL: Add BinaryMathProcessor to named writeables list (#30127)
BinaryMathProcessor was missing from the list of register named writeables causing deserialization errors Fix #30014
- Loading branch information
Showing
2 changed files
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
59 changes: 59 additions & 0 deletions
59
...org/elasticsearch/xpack/sql/expression/function/scalar/math/BinaryMathProcessorTests.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
package org.elasticsearch.xpack.sql.expression.function.scalar.math; | ||
|
||
import org.elasticsearch.common.io.stream.NamedWriteableRegistry; | ||
import org.elasticsearch.common.io.stream.Writeable.Reader; | ||
import org.elasticsearch.test.AbstractWireSerializingTestCase; | ||
import org.elasticsearch.xpack.sql.expression.Literal; | ||
import org.elasticsearch.xpack.sql.expression.function.scalar.Processors; | ||
import org.elasticsearch.xpack.sql.expression.function.scalar.processor.runtime.ConstantProcessor; | ||
import org.elasticsearch.xpack.sql.expression.function.scalar.processor.runtime.Processor; | ||
|
||
import static org.elasticsearch.xpack.sql.tree.Location.EMPTY; | ||
|
||
public class BinaryMathProcessorTests extends AbstractWireSerializingTestCase<BinaryMathProcessor> { | ||
public static BinaryMathProcessor randomProcessor() { | ||
return new BinaryMathProcessor( | ||
new ConstantProcessor(randomLong()), | ||
new ConstantProcessor(randomLong()), | ||
randomFrom(BinaryMathProcessor.BinaryMathOperation.values())); | ||
} | ||
|
||
@Override | ||
protected BinaryMathProcessor createTestInstance() { | ||
return randomProcessor(); | ||
} | ||
|
||
@Override | ||
protected Reader<BinaryMathProcessor> instanceReader() { | ||
return BinaryMathProcessor::new; | ||
} | ||
|
||
@Override | ||
protected NamedWriteableRegistry getNamedWriteableRegistry() { | ||
return new NamedWriteableRegistry(Processors.getNamedWriteables()); | ||
} | ||
|
||
public void testAtan2() { | ||
Processor ba = new ATan2(EMPTY, l(1), l(1)).makeProcessorDefinition().asProcessor(); | ||
assertEquals(0.7853981633974483d, ba.process(null)); | ||
} | ||
|
||
public void testPower() { | ||
Processor ba = new Power(EMPTY, l(2), l(2)).makeProcessorDefinition().asProcessor(); | ||
assertEquals(4d, ba.process(null)); | ||
} | ||
|
||
public void testHandleNull() { | ||
assertNull(new ATan2(EMPTY, l(null), l(3)).makeProcessorDefinition().asProcessor().process(null)); | ||
assertNull(new Power(EMPTY, l(null), l(null)).makeProcessorDefinition().asProcessor().process(null)); | ||
} | ||
|
||
private static Literal l(Object value) { | ||
return Literal.of(EMPTY, value); | ||
} | ||
} |