zhztheplayer commented on code in PR #6884:
URL: https://github.com/apache/incubator-gluten/pull/6884#discussion_r1719538170


##########
backends-velox/src/test/scala/org/apache/gluten/execution/TestOperator.scala:
##########
@@ -2078,4 +2078,12 @@ class TestOperator extends 
VeloxWholeStageTransformerSuite with AdaptiveSparkPla
       checkGlutenOperatorMatch[SortExecTransformer]
     }
   }
+
+  // Open it after fix
+  // test("Test round expression") {
+  //   val df1 = runQueryAndCompare("SELECT round(cast(0.5549999999999999 as 
double), 2)") { _ => }
+  //   checkLengthAndPlan(df1, 1)
+  //   val df2 = runQueryAndCompare("SELECT round(cast(0.19324999999999998 as 
double), 2)") { _ => }
+  //   checkLengthAndPlan(df2, 1)
+  // }

Review Comment:
   Comparing to commenting the code out, you can use `ignore` scalatest flag, 
e.g.,
   
   ```scala
   ignore("Test round expression") {
     ...
   }
   ```



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: [email protected]

For queries about this service, please contact Infrastructure at:
[email protected]


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

Reply via email to