From cd4297a8d009f5897bba04063c1c3b33d90b090a Mon Sep 17 00:00:00 2001 From: echo77-nan <741548989@qq.com> Date: Thu, 11 Dec 2025 14:37:48 +0800 Subject: [PATCH] Update 03_horizontal_splitting_using_partition_table.md Unify all notes. --- .../03_horizontal_splitting_using_partition_table.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/user_manual/quick_starts/en-US/chapter_06_using_ob_for_business_development/03_horizontal_splitting_using_partition_table.md b/docs/user_manual/quick_starts/en-US/chapter_06_using_ob_for_business_development/03_horizontal_splitting_using_partition_table.md index 5119e89a2..8c76dc6cc 100644 --- a/docs/user_manual/quick_starts/en-US/chapter_06_using_ob_for_business_development/03_horizontal_splitting_using_partition_table.md +++ b/docs/user_manual/quick_starts/en-US/chapter_06_using_ob_for_business_development/03_horizontal_splitting_using_partition_table.md @@ -425,7 +425,7 @@ You can also create indexes to improve the query performance of partitioned tabl * The second type is called global index whose partitioning strategy is different from that of the partitioned table. -> **Notice** +> **Note** > > * By default, a local index is created for a partitioned table. > @@ -439,7 +439,7 @@ CREATE INDEX idx_log_date ON t_log_part_by_range_hash(log_date) LOCAL; CREATE INDEX idx_log_date2 ON t_log_part_by_range_hash(log_value, log_date) GLOBAL; ``` -> **Notice** +> **Note** > > You do not need to separately create indexes for the primary and unique keys of a partitioned table in OceanBase Database. In OceanBase Database, the primary key and local unique key in a partitioned table must have a partitioning key.