Skip to content

Commit

Permalink
fix checkstyle
Browse files Browse the repository at this point in the history
  • Loading branch information
loneylee committed Mar 19, 2024
1 parent d597787 commit 21adec7
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,10 @@ object ExpressionConverter extends SQLConfHelper with Logging {
TimestampAddTransform(
substraitExprName,
replaceWithExpressionTransformerInternal(timestampAdd.left, attributeSeq, expressionsMap),
replaceWithExpressionTransformerInternal(timestampAdd.right, attributeSeq, expressionsMap),
replaceWithExpressionTransformerInternal(
timestampAdd.right,
attributeSeq,
expressionsMap),
timestampAdd
)
case e: Transformable =>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,11 +16,13 @@
*/
package io.glutenproject.expression

import com.google.common.collect.Lists
import io.glutenproject.expression.ConverterUtils.FunctionConfig
import io.glutenproject.substrait.expression.{ExpressionBuilder, ExpressionNode}

import org.apache.spark.sql.catalyst.expressions._

import com.google.common.collect.Lists

case class TimestampAddTransform(
substraitExprName: String,
left: ExpressionTransformer,
Expand Down

0 comments on commit 21adec7

Please sign in to comment.