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/arrow-datafusion-comet.git
The following commit(s) were added to refs/heads/main by this push:
new 31e04e5 Enable string-to-bool cast test (#251)
31e04e5 is described below
commit 31e04e5e333ef313309fd5ffdb43bdf3ce9eb77c
Author: Andy Grove <[email protected]>
AuthorDate: Wed Apr 10 13:25:22 2024 -0700
Enable string-to-bool cast test (#251)
---
spark/src/test/scala/org/apache/comet/CometCastSuite.scala | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/spark/src/test/scala/org/apache/comet/CometCastSuite.scala
b/spark/src/test/scala/org/apache/comet/CometCastSuite.scala
index 317371f..e8d340f 100644
--- a/spark/src/test/scala/org/apache/comet/CometCastSuite.scala
+++ b/spark/src/test/scala/org/apache/comet/CometCastSuite.scala
@@ -47,7 +47,7 @@ class CometCastSuite extends CometTestBase with
AdaptiveSparkPlanHelper {
castTest(generateFloats, DataTypes.StringType)
}
- ignore("cast string to bool") {
+ test("cast string to bool") {
castTest(
Seq("TRUE", "True", "true", "FALSE", "False", "false", "1", "0",
"").toDF("a"),
DataTypes.BooleanType)