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
Currently, COPY TO for all data types except for Delta tables allows for relative paths, e.g.
COPY (SELECT1) TO './my_file.csv';
However, when copying to a Delta table, it requires the path to be specified in the following way:
COPY (SELECT1) TO 'file:///Users/path/to/your_new_delta_table';
In addition to being inconsistent with the other file types, it is also less convenient, particularly for an embedded use-case. Ideally, Delta tables could be copied to in the same way as other file types, e.g.:
COPY (SELECT1) TO './my_delta_table';
The text was updated successfully, but these errors were encountered:
Description
Currently,
COPY TO
for all data types except for Delta tables allows for relative paths, e.g.However, when copying to a Delta table, it requires the path to be specified in the following way:
In addition to being inconsistent with the other file types, it is also less convenient, particularly for an embedded use-case. Ideally, Delta tables could be copied to in the same way as other file types, e.g.:
The text was updated successfully, but these errors were encountered: