diff --git a/content/en/docs/Developerguide/alter-function.md b/content/en/docs/Developerguide/alter-function.md index b1b8412707046f4ded9e3f708728f7822c9db723..b0304493c52fd6ead7958c3be2051c1d65ab5759 100644 --- a/content/en/docs/Developerguide/alter-function.md +++ b/content/en/docs/Developerguide/alter-function.md @@ -67,7 +67,7 @@ Only the owner of the function or a system administrator has the permission to r Specifies whether a parameter is an input or output parameter. - Value range: **IN**, **OUT**, and **IN OUT** + Value range: **IN**, **OUT**, **IN OUT** and **VARIDIC** - **argname** diff --git a/content/en/docs/Developerguide/analyze-analyse.md b/content/en/docs/Developerguide/analyze-analyse.md index ba739827f8e11ea14cf71670b5a1a13e44a491e0..88d7667988a207dfadf8505504adc861f4c1abb0 100644 --- a/content/en/docs/Developerguide/analyze-analyse.md +++ b/content/en/docs/Developerguide/analyze-analyse.md @@ -167,7 +167,8 @@ ENABLE ROW MOVEMENT; -- Run **ANALYZE** to update statistics. ``` -postgres=# ANALYZE customer; +postgres=# ANALYZE customer_info; +postgres=# ANALYZE customer_par; ``` -- Run **ANALYZE VERBOSE** statement to update statistics and display table information. diff --git a/content/en/docs/Developerguide/create-function.md b/content/en/docs/Developerguide/create-function.md index e126628e2f840c5160906b6143748cdc2eae99c1..4b9a4599b80048b27d0fcdd83b9235878bf363f6 100644 --- a/content/en/docs/Developerguide/create-function.md +++ b/content/en/docs/Developerguide/create-function.md @@ -79,13 +79,13 @@ Specifies the name of the function to create \(optionally schema-qualified\). - Value range: a string. It must comply with the naming convention. + Value range: a string. It must comply with the naming convention and up to 63 character strings. If there are more than 63 strings, the database will truncate the strings and reserve the first 63 strings as function_name. - **argname** Specifies the parameter name of the function. - Value range: a string. It must comply with the naming convention. + Value range: a string. It must comply with the naming convention and up to 63 character strings. If there are more than 63 strings, the database will truncate the strings and reserve the first 63 strings as function parameter names. - **argmode** diff --git a/content/zh/docs/Developerguide/ALTER-FUNCTION.md b/content/zh/docs/Developerguide/ALTER-FUNCTION.md index ea41a2c6bc61a1d60d2f2eec763259938077443c..a1a0b986a436a8236a87dd887d1b940a207b2e3d 100644 --- a/content/zh/docs/Developerguide/ALTER-FUNCTION.md +++ b/content/zh/docs/Developerguide/ALTER-FUNCTION.md @@ -67,7 +67,7 @@ 标识该参数是输入、输出参数。 - 取值范围:IN/OUT/INOUT + 取值范围:IN/OUT/INOUT/VARIADIC - **argname** diff --git a/content/zh/docs/Developerguide/ANALYZE-ANALYSE.md b/content/zh/docs/Developerguide/ANALYZE-ANALYSE.md index 4de78f91aca9b5c3ca49da7d5261de0f42d8cf29..cd275e5bbbe9d012e2eecc827d23fcda3a11b136 100644 --- a/content/zh/docs/Developerguide/ANALYZE-ANALYSE.md +++ b/content/zh/docs/Developerguide/ANALYZE-ANALYSE.md @@ -167,7 +167,8 @@ ENABLE ROW MOVEMENT; --- 使用ANALYZE语句更新统计信息。 ``` -postgres=# ANALYZE customer; +postgres=# ANALYZE customer_info; +postgres=# ANALYZE customer_par; ``` --- 使用ANALYZE VERBOSE语句更新统计信息,并输出表的相关信息。 diff --git a/content/zh/docs/Developerguide/CREATE-FUNCTION.md b/content/zh/docs/Developerguide/CREATE-FUNCTION.md index 0031bc416b1fc65c3c9505d1b9f668e6ea7a8114..abbbf6d8244fcac0c3d575b062ae983e6eac7ff6 100644 --- a/content/zh/docs/Developerguide/CREATE-FUNCTION.md +++ b/content/zh/docs/Developerguide/CREATE-FUNCTION.md @@ -79,13 +79,13 @@ 要创建的函数名称(可以用模式修饰)。 - 取值范围:字符串,要符合标识符的命名规范。 + 取值范围:字符串,要符合标识符的命名规范。且最多为63个字符串。若超过63个字符串,数据库会截断字符串并保留前63个字符串作为函数名称。 - **argname** 函数参数的名称。 - 取值范围:字符串,要符合标识符的命名规范。 + 取值范围:字符串,要符合标识符的命名规范。且最多为63个字符串。若超过63个字符串,数据库会截断字符串并保留前63个字符串作为函数参数名称。 - **argmode** diff --git a/content/zh/docs/Toolreference/gs_om.md b/content/zh/docs/Toolreference/gs_om.md index ebbebd37458f9cc2bb2ed65420717c0ba27724c0..32d7ded6737bc82e7a0b12277b3bf4a3f3562b64 100644 --- a/content/zh/docs/Toolreference/gs_om.md +++ b/content/zh/docs/Toolreference/gs_om.md @@ -131,9 +131,9 @@ gs\_om参数可以分为如下几类: - --security-mode - 指定是否以安全模式启动数据库 + 指定是否以安全模式启动数据库。 - 取值范围:on 已安全模式启动, off 不已安全模式启动 + 取值范围:on表示以安全模式启动, off表示不以安全模式启动。 默认不开启安全模式 @@ -156,6 +156,7 @@ gs\_om参数可以分为如下几类: - fast方式:保证有主备关系的实例数据是一致的。 - immediate方式:不保证有主备关系的实例数据是一致的。 + ​ 默认值:fast方式 - --time-out=SECS