This is an automated email from the ASF dual-hosted git repository.

viirya 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 47526ae  chore: Ignore unused variables (#306)
47526ae is described below

commit 47526aed357aa9cef9c682209ba257843804900e
Author: Steve Vaughan <[email protected]>
AuthorDate: Tue Apr 23 15:16:34 2024 -0400

    chore: Ignore unused variables (#306)
    
    Co-authored-by: Steve Vaughan Jr <[email protected]>
---
 spark/src/main/scala/org/apache/comet/serde/QueryPlanSerde.scala | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/spark/src/main/scala/org/apache/comet/serde/QueryPlanSerde.scala 
b/spark/src/main/scala/org/apache/comet/serde/QueryPlanSerde.scala
index 0bc2c1d..9a12930 100644
--- a/spark/src/main/scala/org/apache/comet/serde/QueryPlanSerde.scala
+++ b/spark/src/main/scala/org/apache/comet/serde/QueryPlanSerde.scala
@@ -628,7 +628,7 @@ object QueryPlanSerde extends Logging with 
ShimQueryPlanSerde {
             None
           }
 
-        case mul @ Multiply(left, right, _) =>
+        case mul @ Multiply(left, _, _) =>
           if (!supportedDataType(left.dataType)) {
             withInfo(mul, s"Unsupported datatype ${left.dataType}")
           }
@@ -663,7 +663,7 @@ object QueryPlanSerde extends Logging with 
ShimQueryPlanSerde {
             withInfo(div, left, right)
             None
           }
-        case div @ Divide(left, right, _) =>
+        case div @ Divide(left, _, _) =>
           if (!supportedDataType(left.dataType)) {
             withInfo(div, s"Unsupported datatype ${left.dataType}")
           }


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to