Skip to content

Commit

Permalink
Docs: Remove UNIQUE keyword as it is not supported in Flink (apache#9046
Browse files Browse the repository at this point in the history
)
  • Loading branch information
PrabhuJoseph committed Nov 23, 2023
1 parent 0831eb0 commit c119099
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/flink-writes.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Iceberg supports `UPSERT` based on the primary key when writing data into v2 tab

```sql
CREATE TABLE `hive_catalog`.`default`.`sample` (
`id` INT UNIQUE COMMENT 'unique id',
`id` INT COMMENT 'unique id',
`data` STRING NOT NULL,
PRIMARY KEY(`id`) NOT ENFORCED
) with ('format-version'='2', 'write.upsert.enabled'='true');
Expand Down

0 comments on commit c119099

Please sign in to comment.