v7-0003-WIP-Add-possible-message-changes.patch
text/x-patch
Filename: v7-0003-WIP-Add-possible-message-changes.patch
Type: text/x-patch
Part: 3
Message:
Re: tuple radix sort
Patch
Same data as JSON:
GET /api/v1/attachments/:id/patch
the parsed metadata as JSON — format, series position, per-file stats; never the diff bytes.
API reference →
Format: format-patch
Series: patch v7-0003
Subject: WIP Add possible message changes
| File | + | − |
|---|---|---|
| src/backend/utils/sort/tuplesort.c | 2 | 2 |
From 7f2e95ca483ce34e26f22d9bf466ccf9f4182241 Mon Sep 17 00:00:00 2001 From: John Naylor <john.naylor@postgresql.org> Date: Tue, 10 Feb 2026 20:02:19 +0700 Subject: [PATCH v7 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 7b22546a811..deb02eb5ee5 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