From a99cc6c6b4bf083d72fb1e8adfb665a449b7a37f Mon Sep 17 00:00:00 2001 From: Nathan Bossart Date: Wed, 17 Jul 2024 10:51:00 -0500 Subject: Use PqMsg_* macros in more places. Commit f4b54e1ed9, which introduced macros for protocol characters, missed updating a few places. It also did not introduce macros for messages sent from parallel workers to their leader processes. This commit adds a new section in protocol.h for those. Author: Aleksander Alekseev Discussion: https://postgr.es/m/CAJ7c6TNTd09AZq8tGaHS3LDyH_CCnpv0oOz2wN1dGe8zekxrdQ%40mail.gmail.com Backpatch-through: 17 --- src/backend/utils/activity/backend_progress.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/backend/utils/activity/backend_progress.c') diff --git a/src/backend/utils/activity/backend_progress.c b/src/backend/utils/activity/backend_progress.c index bfb9b7704b1..c78c5eb5076 100644 --- a/src/backend/utils/activity/backend_progress.c +++ b/src/backend/utils/activity/backend_progress.c @@ -92,7 +92,7 @@ void pgstat_progress_parallel_incr_param(int index, int64 incr) { /* - * Parallel workers notify a leader through a 'P' protocol message to + * Parallel workers notify a leader through a PqMsg_Progress message to * update progress, passing the progress index and incremented value. * Leaders can just call pgstat_progress_incr_param directly. */ @@ -102,7 +102,7 @@ pgstat_progress_parallel_incr_param(int index, int64 incr) initStringInfo(&progress_message); - pq_beginmessage(&progress_message, 'P'); + pq_beginmessage(&progress_message, PqMsg_Progress); pq_sendint32(&progress_message, index); pq_sendint64(&progress_message, incr); pq_endmessage(&progress_message); -- cgit v1.2.3