mirror of
https://github.com/postgres/postgres.git
synced 2026-05-28 04:35:45 -04:00
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:
parent
4647ee2da3
commit
c7b9f16113
1 changed files with 1 additions and 1 deletions
|
|
@ -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++)
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue