From: Daniel Gustafsson Date: Wed, 15 Jul 2026 19:40:09 +0000 (+0200) Subject: pgbench: Fix incorrect parameter name in error message X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=a1b962b366210ab8d8d220582ad1c32620f35935;p=thirdparty%2Fpostgresql.git pgbench: Fix incorrect parameter name in error message Commit 6f164e6d17616 accidentally mistyped --client as --clients in the error message. Backpatch down to v15 where the it was introduced. Author: Semih Doğan Reviewed-by: Daniel Gustafsson Discussion: https://postgr.es/m/CALOtZ7tuWisV=v0cUY_q6PLHJ-fOiQ7ZN476JwmM0PyV0t5i7Q@mail.gmail.com Backpatch-through: 15 --- diff --git a/src/bin/pgbench/pgbench.c b/src/bin/pgbench/pgbench.c index 7913dde6ceb..6d3b67cdede 100644 --- a/src/bin/pgbench/pgbench.c +++ b/src/bin/pgbench/pgbench.c @@ -6845,7 +6845,7 @@ main(int argc, char **argv) break; case 'c': benchmarking_option_set = true; - if (!option_parse_int(optarg, "-c/--clients", 1, INT_MAX, + if (!option_parse_int(optarg, "-c/--client", 1, INT_MAX, &nclients)) { exit(1); diff --git a/src/bin/pgbench/t/002_pgbench_no_server.pl b/src/bin/pgbench/t/002_pgbench_no_server.pl index f975c73dd75..ded4356f95c 100644 --- a/src/bin/pgbench/t/002_pgbench_no_server.pl +++ b/src/bin/pgbench/t/002_pgbench_no_server.pl @@ -92,7 +92,7 @@ my @options = ( [ 'too many scripts', '-S ' x 129, [qr{at most 128 SQL scripts}] ], [ 'bad #clients', '-c three', - [qr{invalid value "three" for option -c/--clients}] + [qr{invalid value "three" for option -c/--client}] ], [ 'bad #threads', '-j eleven',