test_bloomfilter: Fix error message.

The error message in question uses the wrong format specifier and
variable.  This has been wrong for a while, but since it's in a
test module and wasn't noticed until just now, no back-patch.

Oversight in commit 51bc271790.

Author: Jianghua Yang <yjhjstz@gmail.com>
Discussion: https://postgr.es/m/CAAZLFmS2OMiwe65gdm-MKgO%3DLnKatGMSK6JWxhycGN3TWrhbnw%40mail.gmail.com
This commit is contained in:
Nathan Bossart 2026-03-24 09:32:15 -05:00
parent 4647ee2da3
commit c7b9f16113

View file

@ -125,7 +125,7 @@ test_bloomfilter(PG_FUNCTION_ARGS)
elog(ERROR, "invalid number of tests: %d", tests);
if (nelements < 0)
elog(ERROR, "invalid number of elements: %d", tests);
elog(ERROR, "invalid number of elements: " INT64_FORMAT, nelements);
for (i = 0; i < tests; i++)
{