Description
See:
spark.conf.set("spark.sql.execution.arrow.enabled", "false") df = spark.createDataFrame([[bytearray("a")]]) df.toPandas() spark.conf.set("spark.sql.execution.arrow.enabled", "true") df.toPandas()
_1 0 [97] _1 0 a
We didn't finish binary type in Arrow conversion at Python side. We should disallow it.
Same thine applies to nested timestamps.
Attachments
Issue Links
- relates to
-
SPARK-23380 Adds a conf for Arrow fallback in toPandas/createDataFrame with Pandas DataFrame
- Resolved
- links to