You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@parquet.apache.org by "Kengo Seki (JIRA)" <ji...@apache.org> on 2019/06/13 03:59:00 UTC

[jira] [Created] (PARQUET-1599) Fix to-avro to respect the overwrite option

Kengo Seki created PARQUET-1599:
-----------------------------------

             Summary: Fix to-avro to respect the overwrite option
                 Key: PARQUET-1599
                 URL: https://issues.apache.org/jira/browse/PARQUET-1599
             Project: Parquet
          Issue Type: Bug
          Components: parquet-cli
            Reporter: Kengo Seki


parquet-cli's {{to-avro}} has {{--overwrite}} option, and it works as expected:

{code}
$ ls -l output
total 8
-rw-r--r--  1 sekikn  staff  2010 Jun 13 12:37 sample.avro
$ java -cp 'target/*:target/dependency/*' org.apache.parquet.cli.Main to-avro sample.parquet -o output/sample.avro --overwrite
$ ls -l output
total 8
-rw-r--r--  1 sekikn  staff  2010 Jun 13 12:38 sample.avro
{code}

But even without this flag, it overwrites the existing file with no warning.

{code}
$ java -cp 'target/*:target/dependency/*' org.apache.parquet.cli.Main to-avro sample.parquet -o output/sample.avro
$ ls -l output
total 8
-rw-r--r--  1 sekikn  staff  2010 Jun 13 12:39 sample.avro
{code}

This behaviour should be fixed for consistency with other subcommands.



--
This message was sent by Atlassian JIRA
(v7.6.3#76005)