From 0f49016d4079cbfb55b93347d59a8e29173c7321 Mon Sep 17 00:00:00 2001 From: li-jun056 Date: Fri, 7 Aug 2020 11:30:35 +0800 Subject: [PATCH] update documents --- content/en/docs/Quickstart/miscellaneous-parameters.md | 3 ++- .../\345\205\266\345\256\203\351\200\211\351\241\271.md" | 7 ++----- 2 files changed, 4 insertions(+), 6 deletions(-) diff --git a/content/en/docs/Quickstart/miscellaneous-parameters.md b/content/en/docs/Quickstart/miscellaneous-parameters.md index b2654472c..542932a9d 100644 --- a/content/en/docs/Quickstart/miscellaneous-parameters.md +++ b/content/en/docs/Quickstart/miscellaneous-parameters.md @@ -288,7 +288,6 @@ add_months
postgres=# select length(lpad('123',0,'*')) from dual;
 length
 --------
-
 (1 row)
postgres=# select length(lpad('123',0,'*')) from dual;
@@ -313,6 +312,8 @@ length
 
 
 
+
+
 ## table\_skewness\_warning\_threshold
 
 **Parameter description**: Specifies the threshold for triggering a table skew alarm.
diff --git "a/content/zh/docs/Quickstart/\345\205\266\345\256\203\351\200\211\351\241\271.md" "b/content/zh/docs/Quickstart/\345\205\266\345\256\203\351\200\211\351\241\271.md"
index 6ea1697fd..d96a77ecb 100644
--- "a/content/zh/docs/Quickstart/\345\205\266\345\256\203\351\200\211\351\241\271.md"
+++ "b/content/zh/docs/Quickstart/\345\205\266\345\256\203\351\200\211\351\241\271.md"
@@ -288,7 +288,6 @@ add_months
 
postgres=# select length(lpad('123',0,'*')) from dual;
 length
 --------
-
 (1 row)
postgres=# select length(lpad('123',0,'*')) from dual;
@@ -308,10 +307,8 @@ length
 
 

控制在使用MERGE INTO ... WHEN MATCHED THEN UPDATE(参考MERGE INTO) 和INSERT ... ON DUPLICATE KEY UPDATE(参考INSERT)时,当目标表中一条目标数据与多条源数据冲突时UPDATE行为。

若设置此配置项,当存在上述场景时,该冲突行将会多次执行UPDATE;否则(默认)报错,即MERGE或INSERT操作失败。

- - - - + + ## table\_skewness\_warning\_threshold -- Gitee