diff options
author | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2024-03-04 12:56:02 +0200 |
---|---|---|
committer | Heikki Linnakangas <heikki.linnakangas@iki.fi> | 2024-03-04 12:56:02 +0200 |
commit | 0dd094c4a0a4766cfb3c4932fa32af906229e3e3 (patch) | |
tree | 67df1d62eceb9d3c67a3652ef0977b9b67dc76c1 /src/include/access/parallel.h | |
parent | 8545b28679a2ec2aa66ad2ec81f17019dab5d780 (diff) | |
download | postgresql-0dd094c4a0a4766cfb3c4932fa32af906229e3e3.tar.gz postgresql-0dd094c4a0a4766cfb3c4932fa32af906229e3e3.zip |
Remove unused ParallelWorkerInfo.pid field
The pid was originally used in error context of messages propagated
from parallel workers, but commit 292794f82b removed that. If the need
arises in the future, you can also get the pid with
"shm_mq_get_sender(pcxt->worker[i].error_mqh)->pid".
Diffstat (limited to 'src/include/access/parallel.h')
-rw-r--r-- | src/include/access/parallel.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/include/access/parallel.h b/src/include/access/parallel.h index 64c6fb939ea..69ffe5498f9 100644 --- a/src/include/access/parallel.h +++ b/src/include/access/parallel.h @@ -26,7 +26,6 @@ typedef struct ParallelWorkerInfo { BackgroundWorkerHandle *bgwhandle; shm_mq_handle *error_mqh; - int32 pid; } ParallelWorkerInfo; typedef struct ParallelContext |