Skip to content

Commit

Permalink
[doc] updated url links in documentation (apache#4679)
Browse files Browse the repository at this point in the history
  • Loading branch information
yangjf2019 authored Dec 10, 2024
1 parent 90a37c8 commit 2eeed7d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/content/flink/sql-write.md
Original file line number Diff line number Diff line change
Expand Up @@ -176,8 +176,8 @@ PARTITION (k0 = 0, k1 = 0) SELECT v FROM my_table WHERE false;
{{< hint info >}}
Important table properties setting:
1. Only [primary key table]({{< ref "primary-key-table/overview" >}}) supports this feature.
2. [MergeEngine]({{< ref "primary-key-table/merge-engine" >}}) needs to be [deduplicate]({{< ref "primary-key-table/merge-engine#deduplicate" >}})
or [partial-update]({{< ref "primary-key-table/merge-engine#partial-update" >}}) to support this feature.
2. [MergeEngine]({{< ref "primary-key-table/merge-engine" >}}) needs to be [deduplicate]({{< ref "primary-key-table/merge-engine/overview/#deduplicate" >}})
or [partial-update]({{< ref "primary-key-table/merge-engine/partial-update/" >}}) to support this feature.
3. Do not support updating primary keys.
{{< /hint >}}

Expand Down Expand Up @@ -211,9 +211,9 @@ UPDATE my_table SET b = 1, c = 2 WHERE a = 'myTable';
{{< hint info >}}
Important table properties setting:
1. Only primary key tables support this feature.
2. If the table has primary keys, the following [MergeEngine]({{< ref "primary-key-table/merge-engine" >}}) support this feature:
* [deduplicate]({{< ref "primary-key-table/merge-engine#deduplicate" >}}).
* [partial-update]({{< ref "primary-key-table/merge-engine#partial-update" >}}) with option 'partial-update.remove-record-on-delete' enabled.
2. If the table has primary keys, the following [MergeEngine]({{< ref "primary-key-table/merge-engine/overview/" >}}) support this feature:
* [deduplicate]({{< ref "primary-key-table/merge-engine/overview/#deduplicate" >}}).
* [partial-update]({{< ref "primary-key-table/merge-engine/partial-update/" >}}) with option 'partial-update.remove-record-on-delete' enabled.
3. Do not support deleting from table in streaming mode.
{{< /hint >}}

Expand Down

0 comments on commit 2eeed7d

Please sign in to comment.