From a7dfc1c9fa535dfceac48f8e91ad2cb516872855 Mon Sep 17 00:00:00 2001 From: John Naylor Date: Tue, 10 Feb 2026 20:02:19 +0700 Subject: [PATCH v8 3/4] WIP Add possible message changes Not sure if necessary so kept out of main commit --- src/backend/utils/sort/tuplesort.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/backend/utils/sort/tuplesort.c b/src/backend/utils/sort/tuplesort.c index 2203cfb725d..629d598d8b7 100644 --- a/src/backend/utils/sort/tuplesort.c +++ b/src/backend/utils/sort/tuplesort.c @@ -2243,7 +2243,7 @@ dumptuples(Tuplesortstate *state, bool alltuples) state->currentRun++; if (trace_sort) - elog(LOG, "worker %d starting quicksort of run %d: %s", + elog(LOG, "worker %d starting internal sort of run %d: %s", state->worker, state->currentRun, pg_rusage_show(&state->ru_start)); @@ -2254,7 +2254,7 @@ dumptuples(Tuplesortstate *state, bool alltuples) tuplesort_sort_memtuples(state); if (trace_sort) - elog(LOG, "worker %d finished quicksort of run %d: %s", + elog(LOG, "worker %d finished internal sort of run %d: %s", state->worker, state->currentRun, pg_rusage_show(&state->ru_start)); -- 2.53.0