From 14de42aef86f03a331ca82c677d8a0925f17a236 Mon Sep 17 00:00:00 2001 From: preeteshverma Date: Mon, 5 Aug 2024 10:31:31 +0000 Subject: [PATCH] Fix TestOperator.scala for style issues --- .../test/scala/org/apache/gluten/execution/TestOperator.scala | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backends-velox/src/test/scala/org/apache/gluten/execution/TestOperator.scala b/backends-velox/src/test/scala/org/apache/gluten/execution/TestOperator.scala index 5ca5087d9ef4..36cd874fce6b 100644 --- a/backends-velox/src/test/scala/org/apache/gluten/execution/TestOperator.scala +++ b/backends-velox/src/test/scala/org/apache/gluten/execution/TestOperator.scala @@ -1626,7 +1626,7 @@ class TestOperator extends VeloxWholeStageTransformerSuite with AdaptiveSparkPla spark.read.parquet(path.getCanonicalPath).createOrReplaceTempView("view") runQueryAndCompare( "SELECT x FROM view WHERE cast(x as timestamp) " + - "IN ('1970-01-01 08:00:00.001','1970-01-01 08:00:00.2')")(_) + "IN ('1970-01-01 08:00:00.001','1970-01-01 08:00:00.2')")(df => print(df)) } }