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
The first version of writing into deltalake did not implement overwriting an existing table. Currently, this is raising a ValueError (should actually raise a NotImplementedError):
Traceback (most recent call last):
File "/Users/jbennet/src/dask-deltatable/t1.py", line 14, in <module>
to_deltalake("t1_data", ddf, mode="overwrite").compute()
File "/Users/jbennet/src/dask-deltatable/dask_deltatable/write.py", line 82, in to_deltalake
raise ValueError(
ValueError: Schema of data does not match table schema
Table schema:
None
Data Schema:
i1: int64
f1: double
s1: string
The first version of writing into deltalake did not implement overwriting an existing table. Currently, this is raising a
ValueError
(should actually raise aNotImplementedError
):Raises:
Original PR: #29.
The text was updated successfully, but these errors were encountered: