From c1e7d41bfbcbdfaf3ba79558ba7f5351a6e58d91 Mon Sep 17 00:00:00 2001 From: liyang0608 <264327807@qq.com> Date: Thu, 9 Jul 2020 14:57:27 +0800 Subject: [PATCH] modifed issue --- content/en/docs/Developerguide/create-procedure.md | 2 +- content/en/docs/Developerguide/primary-server.md | 2 +- content/zh/docs/Developerguide/CREATE-PROCEDURE.md | 2 +- .../\344\270\273\346\234\215\345\212\241\345\231\250.md" | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/content/en/docs/Developerguide/create-procedure.md b/content/en/docs/Developerguide/create-procedure.md index d7f0d15b1..1a2ed9a7a 100644 --- a/content/en/docs/Developerguide/create-procedure.md +++ b/content/en/docs/Developerguide/create-procedure.md @@ -16,7 +16,7 @@ ## Syntax ``` -postgres=# CREATE [ OR REPLACE ] PROCEDURE procedure_name +CREATE [ OR REPLACE ] PROCEDURE procedure_name [ ( {[ argmode ] [ argname ] argtype [ { DEFAULT | := | = } expression ]}[,...]) ] [ { IMMUTABLE | STABLE | VOLATILE } diff --git a/content/en/docs/Developerguide/primary-server.md b/content/en/docs/Developerguide/primary-server.md index 113ee7f66..187d189c6 100644 --- a/content/en/docs/Developerguide/primary-server.md +++ b/content/en/docs/Developerguide/primary-server.md @@ -10,7 +10,7 @@ This parameter is a SIGHUP parameter. Set it based on instructions provided in >- The current synchronous standby server is on the top of the list. If the current synchronous standby server is disconnected, it will be replaced immediately with the next-highest-priority standby server. Name of the next-highest-priority standby server is added to the list. >- The standby server name can be specified by setting the environment variable **PGAPPNAME**. -**Value range**: a string. **\*** indicates that synchronous replication is disabled. +**Value range**: a string. **\*** means to match the name of any standby machine that provides synchronous replication. **Default value**: **\*** diff --git a/content/zh/docs/Developerguide/CREATE-PROCEDURE.md b/content/zh/docs/Developerguide/CREATE-PROCEDURE.md index ee804d0d5..3250e21b8 100644 --- a/content/zh/docs/Developerguide/CREATE-PROCEDURE.md +++ b/content/zh/docs/Developerguide/CREATE-PROCEDURE.md @@ -16,7 +16,7 @@ ## 语法格式 ``` -postgres=# CREATE [ OR REPLACE ] PROCEDURE procedure_name +CREATE [ OR REPLACE ] PROCEDURE procedure_name [ ( {[ argmode ] [ argname ] argtype [ { DEFAULT | := | = } expression ]}[,...]) ] [ { IMMUTABLE | STABLE | VOLATILE } diff --git "a/content/zh/docs/Developerguide/\344\270\273\346\234\215\345\212\241\345\231\250.md" "b/content/zh/docs/Developerguide/\344\270\273\346\234\215\345\212\241\345\231\250.md" index d393ad842..63b88b0a8 100644 --- "a/content/zh/docs/Developerguide/\344\270\273\346\234\215\345\212\241\345\231\250.md" +++ "b/content/zh/docs/Developerguide/\344\270\273\346\234\215\345\212\241\345\231\250.md" @@ -10,7 +10,7 @@ >- 当前连接的同步备机是列表中的第一个名称。如果当前同步备机失去连接,则它会立即更换下一个优先级更高的备机,并将此备机的名称放入列表中。 >- 备机名称可以通过设置环境变量PGAPPNAME指定。 -**取值范围:**字符串。当取值为\*,表示不启用同步复制。 +**取值范围:**字符串。当取值为\*,表示匹配任意提供同步复制的备机名称。 **默认值:**\* -- Gitee