https://delta.io logo
a

Andrea Campolonghi

08/03/2023, 12:55 PM
Is there a way to pass tblproperties when creating a delta table in pyspark saveAsTable ?
g

Guilhem de Viry

08/03/2023, 3:01 PM
You should be able to it with the DataframeWriterV2 API (
df.writeTo
), with the
tableProperty
builder method. I don’t think you can do it with the V1 API - which is what
saveAsTable
relies on.
👍 2