Re: pg_dump test instability

From: Peter Eisentraut <peter(dot)eisentraut(at)2ndquadrant(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: Stephen Frost <sfrost(at)snowman(dot)net>, pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: pg_dump test instability
Date: 2018-09-13 07:54:54
Message-ID: 080c109e-0426-0aff-7a88-c0ea9399fa56@2ndquadrant.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 12/09/2018 18:06, Tom Lane wrote:
> No. In both code paths, the array slot at index first_te is being
> physically dropped from the set of valid entries (by incrementing
> first_te). In the first path, that slot holds the item we want to
> remove logically from the set, so that incrementing first_te is
> all we have to do: the remaining entries are still in the range
> first_te..last_te, and they're still sorted. In the second code
> path, the item that was in that slot is still wanted as part of
> the set, so we copy it into the valid range (overwriting the item
> in slot i, which is no longer wanted). Now the valid range is
> probably not sorted, so we have to flag that a re-sort is needed.

I see. Why not shift all items up to the i'th up by one place, instead
of moving only the first one? That way the sortedness would be
preserved. Otherwise we'd move the first one into the middle, then
sorting would move it to the front again, etc.

--
Peter Eisentraut http://www.2ndQuadrant.com/
PostgreSQL Development, 24x7 Support, Remote DBA, Training & Services

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Michael Paquier 2018-09-13 08:03:28 Re: Unused argument from execute_sql_string()
Previous Message Paul Guo 2018-09-13 07:27:58 Re: [Patch] Create a new session in postmaster by calling setsid()