diff --git a/docs/data/partitioning/partitioned_writes.md b/docs/data/partitioning/partitioned_writes.md index d9bc00c2d71..4d6c16ee503 100644 --- a/docs/data/partitioning/partitioned_writes.md +++ b/docs/data/partitioning/partitioned_writes.md @@ -14,7 +14,7 @@ COPY orders TO 'orders' (FORMAT PARQUET, PARTITION_BY (year, month)); Write a table to a Hive partitioned data set of CSV files, allowing overwrites: ```sql -COPY orders TO 'orders' (FORMAT CSV, PARTITION_BY (year, month), OVERWRITE_OR_IGNORE 1); +COPY orders TO 'orders' (FORMAT CSV, PARTITION_BY (year, month), OVERWRITE_OR_IGNORE); ``` ## Partitioned Writes