pgsql: Fix cross-version upgrade test breakage from commit fe07100e82.

Started by Nathan Bossart12 months ago3 messagescomitters
Jump to latest
#1Nathan Bossart
nathandbossart@gmail.com

Fix cross-version upgrade test breakage from commit fe07100e82.

In commit fe07100e82, I renamed a couple of functions in
test_dsm_registry to make it clear what they are testing. However,
the buildfarm's cross-version upgrade tests run pg_upgrade with the
test modules installed, so this caused errors like:

ERROR: could not find function "get_val_in_shmem" in file ".../test_dsm_registry.so"

To fix, revert those renames. I could probably get away with only
un-renaming the C symbols, but I figured I'd avoid introducing
function name mismatches. Also, AFAICT the buildfarm's
cross-version upgrade tests do not run the test module tests
post-upgrade, else we'll need to properly version the extension.

Per buildfarm member crake.

Discussion: /messages/by-id/aGVuYUNW23tStUYs@nathan

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/0c2b7174c362d3092eb7eabf0117a8d47c64ce0e

Modified Files
--------------
.../test_dsm_registry/expected/test_dsm_registry.out | 14 +++++++-------
.../modules/test_dsm_registry/sql/test_dsm_registry.sql | 4 ++--
.../modules/test_dsm_registry/test_dsm_registry--1.0.sql | 4 ++--
src/test/modules/test_dsm_registry/test_dsm_registry.c | 8 ++++----
4 files changed, 15 insertions(+), 15 deletions(-)

#2Andrew Dunstan
andrew@dunslane.net
In reply to: Nathan Bossart (#1)
Re: pgsql: Fix cross-version upgrade test breakage from commit fe07100e82.

On 2025-07-02 We 2:27 PM, Nathan Bossart wrote:

Fix cross-version upgrade test breakage from commit fe07100e82.

In commit fe07100e82, I renamed a couple of functions in
test_dsm_registry to make it clear what they are testing. However,
the buildfarm's cross-version upgrade tests run pg_upgrade with the
test modules installed, so this caused errors like:

ERROR: could not find function "get_val_in_shmem" in file ".../test_dsm_registry.so"

To fix, revert those renames. I could probably get away with only
un-renaming the C symbols, but I figured I'd avoid introducing
function name mismatches. Also, AFAICT the buildfarm's
cross-version upgrade tests do not run the test module tests
post-upgrade, else we'll need to properly version the extension.

It doesn't really run any sanity checks at all other than amchecks.. It
just compares the pre- and post- upgrade dumps (with suitable
modifications).

So far that seems to have been enough.

cheers

andrew

--
Andrew Dunstan
EDB: https://www.enterprisedb.com

#3Nathan Bossart
nathandbossart@gmail.com
In reply to: Andrew Dunstan (#2)
Re: pgsql: Fix cross-version upgrade test breakage from commit fe07100e82.

On Wed, Jul 02, 2025 at 03:43:02PM -0400, Andrew Dunstan wrote:

On 2025-07-02 We 2:27 PM, Nathan Bossart wrote:

To fix, revert those renames. I could probably get away with only
un-renaming the C symbols, but I figured I'd avoid introducing
function name mismatches. Also, AFAICT the buildfarm's
cross-version upgrade tests do not run the test module tests
post-upgrade, else we'll need to properly version the extension.

It doesn't really run any sanity checks at all other than amchecks.. It just
compares the pre- and post- upgrade dumps (with suitable modifications).

So far that seems to have been enough.

Thanks for confirming.

--
nathan