Describe the bug
I was trying to set parquet writer option to 2.0 in datafusion-cli and got the following confusing error message:
❯ copy src_table to 'table.parquet' (format parquet,writer_version '2.0');
Invalid or Unsupported Configuration: Unknown or unsupported parquet writer version '2.0' valid options are '1.0' and '2.0'
It appears that I could use 2.0 without quotes and with double quotes like "2.0" but not with single quotes as the error message reports the values.
Probably the error message should use double quotes instead.
To Reproduce
Use incorrect value for writer_version option in COPY TO using parquet format
Expected behavior
Error message should not be confusing
Additional context
No response
Describe the bug
I was trying to set parquet writer option to 2.0 in datafusion-cli and got the following confusing error message:
It appears that I could use
2.0without quotes and with double quotes like"2.0"but not with single quotes as the error message reports the values.Probably the error message should use double quotes instead.
To Reproduce
Use incorrect value for
writer_versionoption inCOPY TOusing parquet formatExpected behavior
Error message should not be confusing
Additional context
No response