tinfoil-knight commented on issue #9927: URL: https://github.com/apache/arrow-datafusion/issues/9927#issuecomment-2035428385
The documentation for the `COPY` command is outdated. - You need a `OPTIONS` prefix before specifying them. - Also, `partition_by` needs to be specified separately & not with the options. This is how your query would look now: ``` COPY t1 TO '/tmp/hive_output/' PARTITIONED BY (col1) OPTIONS (format parquet); ``` -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
