Skip to content

Commit

Permalink
[doc] Fix links in sql-write
Browse files Browse the repository at this point in the history
  • Loading branch information
JingsongLi committed Dec 11, 2024
1 parent 5cf4c93 commit b339693
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 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/overview/#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/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.
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
2 changes: 1 addition & 1 deletion docs/content/primary-key-table/merge-engine/overview.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ title: "Overview"
weight: 1
type: docs
aliases:
- /primary-key-table/merge-engin/overview.html
- /primary-key-table/merge-engine/overview.html
---
<!--
Licensed to the Apache Software Foundation (ASF) under one
Expand Down

0 comments on commit b339693

Please sign in to comment.