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

From: "Potapov Alexander" <a(dot)potapov(at)postgrespro(dot)com>
To: pgsql-hackers(at)lists(dot)postgresql(dot)org
Subject: [Patch] Fix pg_upgrade/t/007_multixact_conversion.pl
Date: 2026-06-15 12:23:36
Message-ID: 3a39edd2-5a53-cc0c-7e82-051b9829887c@postgrespro.com
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

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.

Best regards,
Alexander Potapov

Attachment Content-Type Size
0001-Use-correct-fields-in-table-mxofftest.patch application/octet-stream 912 bytes

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message shveta malik 2026-06-15 12:55:33 Re: Proposal: Conflict log history table for Logical Replication
Previous Message Dilip Kumar 2026-06-15 11:56:48 Re: Proposal: Conflict log history table for Logical Replication