Skip to content

Commit f86a074

Browse files
hsiang-candygrove
andauthored
Update spark/src/main/scala/org/apache/comet/DataTypeSupport.scala
Thanks 👍 Co-authored-by: Andy Grove <agrove@apache.org>
1 parent 87fffe7 commit f86a074

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

spark/src/main/scala/org/apache/comet/DataTypeSupport.scala

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,9 @@ trait DataTypeSupport {
5252
true
5353
case t: DataType if t.typeName == "timestamp_ntz" =>
5454
true
55-
case _ => false
55+
case other =>
56+
fallbackReasons += s"Unsupported type: $other"
57+
false
5658
}
5759

5860
/**

0 commit comments

Comments
 (0)