Skip to content

Commit 698fe3e

Browse files
committed
feat: add read array support
1 parent 1440c17 commit 698fe3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spark/src/main/scala/org/apache/comet/serde/QueryPlanSerde.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ object QueryPlanSerde extends Logging with ShimQueryPlanSerde with CometExprShim
6969
case s: StructType if allowComplex =>
7070
s.fields.map(_.dataType).forall(supportedDataType(_, allowComplex))
7171
case a: ArrayType if allowComplex =>
72-
supportedDataType(a.elementType)
72+
supportedDataType(a.elementType, allowComplex)
7373
case dt =>
7474
emitWarning(s"unsupported Spark data type: $dt")
7575
false

0 commit comments

Comments
 (0)