diff --git a/content/en/docs/Developerguide/create-procedure.md b/content/en/docs/Developerguide/create-procedure.md
index c8e2d5bb51aaca641ac4ccfdd25f89ace9cdc9cd..282d2d697052ee6a39ec770e4d6ee877b0918546 100644
--- a/content/en/docs/Developerguide/create-procedure.md
+++ b/content/en/docs/Developerguide/create-procedure.md
@@ -26,7 +26,7 @@ CREATE [ OR REPLACE ] PROCEDURE procedure_name
| { CALLED ON NULL INPUT | RETURNS NULL ON NULL INPUT | STRICT }
| {[ EXTERNAL ] SECURITY INVOKER | [ EXTERNAL ] SECURITY DEFINER | AUTHID DEFINER | AUTHID CURRENT_USER}
| COST execution_cost
- | SET configuration_parameter { [ TO | = ] value | FROM CURRENT }
+ | SET configuration_parameter { TO value| = value | FROM CURRENT }
][ ... ]
{ IS | AS }
plsql_body
diff --git a/content/en/docs/Developerguide/security-and-authentication_postgresql-conf.md b/content/en/docs/Developerguide/security-and-authentication_postgresql-conf.md
index f5181add31bd5c29eaa8fe948c7dd1760f37b643..c357ed82077b1627c805700de5359bb48f14cd48 100644
--- a/content/en/docs/Developerguide/security-and-authentication_postgresql-conf.md
+++ b/content/en/docs/Developerguide/security-and-authentication_postgresql-conf.md
@@ -174,7 +174,7 @@ This parameter is a SIGHUP parameter. Set it based on instructions provided in
- **on** indicates that the password of the initial account needs to be modified upon the first login.
- **off** indicates that the password of the initial account does not need to be modified.
-**Default value**: **off**
+**Default value**: **on**
## password\_policy
diff --git a/content/zh/docs/Developerguide/CREATE-PROCEDURE.md b/content/zh/docs/Developerguide/CREATE-PROCEDURE.md
index b635cbf9a6a9ebf3d1227b640e8d457b27e7037d..f20665e1543453395f2fd2573aa85533b4ec0f5d 100644
--- a/content/zh/docs/Developerguide/CREATE-PROCEDURE.md
+++ b/content/zh/docs/Developerguide/CREATE-PROCEDURE.md
@@ -26,7 +26,7 @@ CREATE [ OR REPLACE ] PROCEDURE procedure_name
| { CALLED ON NULL INPUT | RETURNS NULL ON NULL INPUT | STRICT }
| {[ EXTERNAL ] SECURITY INVOKER | [ EXTERNAL ] SECURITY DEFINER | AUTHID DEFINER | AUTHID CURRENT_USER}
| COST execution_cost
- | SET configuration_parameter { [ TO | = ] value | FROM CURRENT }
+ | SET configuration_parameter { TO value| = value | FROM CURRENT }
][ ... ]
{ IS | AS }
plsql_body
diff --git "a/content/zh/docs/Developerguide/GIN\346\217\220\347\244\272\344\270\216\346\212\200\345\267\247.md" "b/content/zh/docs/Developerguide/GIN\346\217\220\347\244\272\344\270\216\346\212\200\345\267\247.md"
index 80ac64737a4a60cf85d912075285804c7ddcf7fe..644d1d37d5f80f4c69b7179ae35a5afe5cab7cbf 100644
--- "a/content/zh/docs/Developerguide/GIN\346\217\220\347\244\272\344\270\216\346\212\200\345\267\247.md"
+++ "b/content/zh/docs/Developerguide/GIN\346\217\220\347\244\272\344\270\216\346\212\200\345\267\247.md"
@@ -16,6 +16,6 @@
开发GIN索引的主要目的是为了让openGauss支持高度可伸缩的全文索引,并且常常会遇见全文索引返回海量结果的情形。而且,这经常发生在查询高频词的时候,因而这样的结果集没什么用处。因为从磁盘读取大量记录并对其进行排序会消耗大量资源,这在产品环境下是不能接受的。
- 为了控制这种情况,GIN索引有一个可配置的返回结果行数上限的配置参数gin\_fuzzy\_search\_limit。缺省值0表示没有限制。如果设置了非零值,那么返回结果就是从完整结果集中随机选择的一部分。
+ 为了控制这种情况,GIN索引有一个可配置的返回结果行数的软上限的配置参数gin\_fuzzy\_search\_limit。缺省值0表示没有限制。如果设置了非零值,那么返回结果就是从完整结果集中随机选择的一部分。“软上限”的意思是返回结果的实际数量可能与指定的限制有偏差,这取决于查询和系统随机数生成器的质量。
diff --git "a/content/zh/docs/Developerguide/\345\256\211\345\205\250\345\222\214\350\256\244\350\257\201_postgresql-conf.md" "b/content/zh/docs/Developerguide/\345\256\211\345\205\250\345\222\214\350\256\244\350\257\201_postgresql-conf.md"
index 7d71fee08961e2da1ea6ca7cbe88bcdc97a10cf1..c630ff8682eae26f2006f27c5baa330743b9ba7e 100644
--- "a/content/zh/docs/Developerguide/\345\256\211\345\205\250\345\222\214\350\256\244\350\257\201_postgresql-conf.md"
+++ "b/content/zh/docs/Developerguide/\345\256\211\345\205\250\345\222\214\350\256\244\350\257\201_postgresql-conf.md"
@@ -174,7 +174,7 @@
- on表示openGauss安装成功后初始用户首次登录操作前需要修改初始密码。
- off表示openGauss安装成功后初始用户无需修改初始密码即可进行操作。
-**默认值:**off
+**默认值:**on
## password\_policy