]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
pgbench: Fix incorrect parameter name in error message
authorDaniel Gustafsson <dgustafsson@postgresql.org>
Wed, 15 Jul 2026 19:40:09 +0000 (21:40 +0200)
committerDaniel Gustafsson <dgustafsson@postgresql.org>
Wed, 15 Jul 2026 19:40:09 +0000 (21:40 +0200)
Commit 6f164e6d17616 accidentally mistyped --client as --clients in
the error message.  Backpatch down to v15 where the it was introduced.

Author: Semih Doğan <semih702do@gmail.com>
Reviewed-by: Daniel Gustafsson <daniel@yesql.se>
Discussion: https://postgr.es/m/CALOtZ7tuWisV=v0cUY_q6PLHJ-fOiQ7ZN476JwmM0PyV0t5i7Q@mail.gmail.com
Backpatch-through: 15

src/bin/pgbench/pgbench.c
src/bin/pgbench/t/002_pgbench_no_server.pl

index 7913dde6ceb42df2484f5b37a96fbab82d0ff3c2..6d3b67cdedea34972d51374abba2f5f044368715 100644 (file)
@@ -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);
index f975c73dd758a257dba462b9499581613d4d9de3..ded4356f95cc340e14c997c8877ee347d103d6b6 100644 (file)
@@ -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',