From 062516c3284a6eaa76deaf48325cff0fb72959e9 Mon Sep 17 00:00:00 2001 From: TotaJ Date: Tue, 4 Aug 2020 16:37:10 +0800 Subject: [PATCH] Modify doc for prokind. --- content/en/docs/Developerguide/pg_proc.md | 14 ++++---------- content/zh/docs/Developerguide/PG_PROC.md | 15 ++++----------- 2 files changed, 8 insertions(+), 21 deletions(-) diff --git a/content/en/docs/Developerguide/pg_proc.md b/content/en/docs/Developerguide/pg_proc.md index 36d9957d7..bdbe4094e 100644 --- a/content/en/docs/Developerguide/pg_proc.md +++ b/content/en/docs/Developerguide/pg_proc.md @@ -76,18 +76,11 @@

Simplified call method for the function

-

proisagg

+

prokind

-

Boolean

+

"char"

-

Whether the function is an aggregate function

- - -

proiswindow

- -

Boolean

- -

Whether the function is a window function

+

Function kind, 'f' for a normal function, 'p' for a procedure, 'a' for an aggregate function, or 'w' for a window function

prosecdef

@@ -234,3 +227,4 @@ + diff --git a/content/zh/docs/Developerguide/PG_PROC.md b/content/zh/docs/Developerguide/PG_PROC.md index f2022a1d6..6cf9dd332 100644 --- a/content/zh/docs/Developerguide/PG_PROC.md +++ b/content/zh/docs/Developerguide/PG_PROC.md @@ -76,20 +76,12 @@ PG\_PROC系统表存储函数或过程的信息。

此函数的简化调用方式。

-

proisagg

+

prokind

-

Boolean

+

"char"

-

函数是聚集函数。

+

函数类型,'f'代表普通函数,'p'代表存储过程,'a'代表聚集函数,'w'代表窗口函数。

- -

proiswindow

- -

Boolean

- -

函数是窗口函数。

- -

prosecdef

Boolean

@@ -234,3 +226,4 @@ PG\_PROC系统表存储函数或过程的信息。 + -- Gitee