You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In the PySpark APIs for convertToDelta command, users can specify the data type of a partition column:
# Convert partitioned parquet table at path 'path/to/table' and partitioned by integer column named 'part'
partitionedDeltaTable = DeltaTable.convertToDelta(spark, "parquet.`path/to/table`", "part int")
It makes sense to support user-defined data type and nullability for partition columns in convert_to_delta. Currently the convert_to_delta function sets the data type of all partition columns as string.
Description
In the PySpark APIs for
convertToDelta
command, users can specify the data type of a partition column:It makes sense to support user-defined data type and nullability for partition columns in
convert_to_delta
. Currently theconvert_to_delta
function sets the data type of all partition columns asstring
.Use Case
Related Issue(s)
#1041, #1682, #1686
The text was updated successfully, but these errors were encountered: