pgsql: Fix failing regression test on x86-32 machines

From: David Rowley <drowley(at)postgresql(dot)org>
To: pgsql-committers(at)lists(dot)postgresql(dot)org
Subject: pgsql: Fix failing regression test on x86-32 machines
Date: 2025-03-31 22:06:54
Message-ID: E1tzNHS-0020Vg-2b@gemulon.postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-committers

Fix failing regression test on x86-32 machines

95d6e9af0 added code to display the tuplestore storage type for
WindowAgg nodes and added a test to ensure the "Disk" storage method was
working correctly by setting work_mem to 64 and running a test which
caused the WindowAgg to go to disk. Seemingly, the number of rows
chosen there wasn't quite enough for that to happen in x86 32-bit.

Fix this by increasing the number of rows slightly.

I suspect the buildfarm didn't catch this as MEMORY_CONTEXT_CHECKING
builds will use a bit more memory for MemoryChunks to store the
requested_size and also because of the additional space to store the
chunk's sentinel byte.

Reported-by: Christoph Berg <myon(at)debian(dot)org>
Discussion: https://postgr.es/m/Z-q3ZAM4OhE-4UiI@msg.df7cb.de

Branch
------
master

Details
-------
https://git.postgresql.org/pg/commitdiff/3dbdf86c6364d6b8470fa4067096062cea62405a

Modified Files
--------------
src/test/regress/expected/explain.out | 4 ++--
src/test/regress/sql/explain.sql | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)

Browse pgsql-committers by date

  From Date Subject
Next Message David Rowley 2025-03-31 22:09:11 Re: pgsql: Add memory/disk usage for Window aggregate nodes in EXPLAIN.
Previous Message Christoph Berg 2025-03-31 21:54:30 Re: pgsql: Add support for OAUTHBEARER SASL mechanism