This is an automated email from the ASF dual-hosted git repository.
agrove pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git
The following commit(s) were added to refs/heads/main by this push:
new 09dc7cc6c feat:support ansi mode remainder function (#2556)
09dc7cc6c is described below
commit 09dc7cc6c1307734b617c87d5ea87a7cb53207fd
Author: B Vadlamani <[email protected]>
AuthorDate: Tue Oct 14 05:40:41 2025 -0700
feat:support ansi mode remainder function (#2556)
---
spark/src/main/scala/org/apache/comet/serde/arithmetic.scala | 8 --------
1 file changed, 8 deletions(-)
diff --git a/spark/src/main/scala/org/apache/comet/serde/arithmetic.scala
b/spark/src/main/scala/org/apache/comet/serde/arithmetic.scala
index a97a87e73..3e8a670b9 100644
--- a/spark/src/main/scala/org/apache/comet/serde/arithmetic.scala
+++ b/spark/src/main/scala/org/apache/comet/serde/arithmetic.scala
@@ -244,14 +244,6 @@ object CometIntegralDivide extends
CometExpressionSerde[IntegralDivide] with Mat
object CometRemainder extends CometExpressionSerde[Remainder] with MathBase {
- override def getSupportLevel(expr: Remainder): SupportLevel = {
- if (expr.evalMode == EvalMode.ANSI) {
- Incompatible(Some("ANSI mode is not supported"))
- } else {
- Compatible(None)
- }
- }
-
override def convert(
expr: Remainder,
inputs: Seq[Attribute],
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]