Re: [Patch] Fix pg_upgrade/t/007_multixact_conversion.pl

From: Heikki Linnakangas <hlinnaka(at)iki(dot)fi>
To: Potapov Alexander <a(dot)potapov(at)postgrespro(dot)com>, pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: Re: [Patch] Fix pg_upgrade/t/007_multixact_conversion.pl
Date: 2026-06-15 13:45:22
Message-ID: 7f989e9f-e00b-423e-bc61-a183a0c51b6c@iki.fi
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On 15/06/2026 15:23, Potapov Alexander wrote:
> Hello,
>
> This about the test pg_upgrade/t/007_multixact_conversion.pl. It was added several months ago. The test creates table mxofftest :
> CREATE TABLE mxofftest (id INT PRIMARY KEY, n_updated INT)
> Next there is wrong usage of this table:
> "SELECT ctid, xmin, xmax, * FROM mxofftest");
> It should be
> "SELECT id, n_updated, * FROM mxofftest");
>
> The fix is very simple, the patch attached.

What's wrong with the query it currently uses?

- Heikki

In response to

Browse pgsql-hackers by date

  From Date Subject
Next Message Amit Kapila 2026-06-15 13:53:00 Re: Report bytes and transactions actually sent downtream
Previous Message Andrew Dunstan 2026-06-15 13:43:35 Re: BackgroundPsql swallowing errors on windows