diff options
author | Peter Eisentraut | 2022-10-14 06:37:12 +0000 |
---|---|---|
committer | Peter Eisentraut | 2022-10-14 06:38:49 +0000 |
commit | 34df7b9dfdeee442cf43060b6499bedc5f619f7f (patch) | |
tree | f5651900225e21fe4d9625076936ab80c71989f8 | |
parent | 39b8c293fcde1d845da4d7127a25d41df53faab5 (diff) |
doc: Correct type of bgw_notify_pid
This has apparently been wrong since the beginning
(090d0f2050647958865cb495dff74af7257d2bb4).
Discussion: https://www.postgresql.org/message-id/[email protected]
-rw-r--r-- | doc/src/sgml/bgworker.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/bgworker.sgml b/doc/src/sgml/bgworker.sgml index 3d4e4afcf91..7ba5da27e50 100644 --- a/doc/src/sgml/bgworker.sgml +++ b/doc/src/sgml/bgworker.sgml @@ -63,7 +63,7 @@ typedef struct BackgroundWorker char bgw_function_name[BGW_MAXLEN]; Datum bgw_main_arg; char bgw_extra[BGW_EXTRALEN]; - int bgw_notify_pid; + pid_t bgw_notify_pid; } BackgroundWorker; </programlisting> </para> |