Skip to content

Commit

Permalink
Simplify flag
Browse files Browse the repository at this point in the history
  • Loading branch information
szarnyasg committed Jun 6, 2024
1 parent 6c117c7 commit 15a5262
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/data/partitioning/partitioned_writes.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 15a5262

Please sign in to comment.