diff options
author | Michael Paquier | 2023-10-04 07:16:50 +0000 |
---|---|---|
committer | Michael Paquier | 2023-10-04 07:20:41 +0000 |
commit | c8e318b1b8d9b699a96b96db861b362550456108 (patch) | |
tree | dbac9e8d0b0815886555d8ba5c00aa5f20eb83c2 /doc/src | |
parent | 77d0ad6c46c518234b9ce0a5be1f61a25f1bf753 (diff) |
worker_spi: Rename custom wait event to "WorkerSpiMain"
This naming is more consistent with all the other user-facing wait event
strings. Other in-core modules will use the same naming convention, so
let's be consistent here as well.
Extracted from a larger patch by the same author.
Author: Masahiro Ikeda
Discussion: https://postgr.es/m/197bce267fa691a0ac62c86c4ab904c4@oss.nttdata.com
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/xfunc.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/xfunc.sgml b/doc/src/sgml/xfunc.sgml index 281c178b0e8..96ba95818c2 100644 --- a/doc/src/sgml/xfunc.sgml +++ b/doc/src/sgml/xfunc.sgml @@ -3472,9 +3472,9 @@ uint32 WaitEventExtensionNew(const char *wait_event_name) <screen> =# SELECT wait_event_type, wait_event FROM pg_stat_activity WHERE backend_type ~ 'worker_spi'; - wait_event_type | wait_event ------------------+----------------- - Extension | worker_spi_main + wait_event_type | wait_event +-----------------+--------------- + Extension | WorkerSpiMain (1 row) </screen> </para> |