diff --git a/content/en/docs/Developerguide/pg_proc.md b/content/en/docs/Developerguide/pg_proc.md
index 36d9957d7f9899161db7311889d056dfb42ab8dd..bdbe4094e78c776446fcbd3c25954010f6d0a2a0 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 f2022a1d6168eb1208835a441253ec64d92395d1..6cf9dd33243c6ad3d658e03b223cbb8bcbb57446 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系统表存储函数或过程的信息。
+
|