From cacf12e92f7854547b8125f8a9d58694a05d1479 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Mon, 19 Sep 2022 06:35:01 -0400 Subject: [PATCH] Add missing serial commas --- doc/src/sgml/ref/pgbench.sgml | 2 +- src/bin/pgbench/pgbench.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/src/sgml/ref/pgbench.sgml b/doc/src/sgml/ref/pgbench.sgml index 2acf55c2ac..7d66679efa 100644 --- a/doc/src/sgml/ref/pgbench.sgml +++ b/doc/src/sgml/ref/pgbench.sgml @@ -636,7 +636,7 @@ pgbench options d Report the following statistics for each command after the benchmark finishes: the average per-statement latency (execution time from the - perspective of the client), the number of failures and the number of + perspective of the client), the number of failures, and the number of retries after serialization or deadlock errors in this command. The report displays retry statistics only if the option is not equal to 1. diff --git a/src/bin/pgbench/pgbench.c b/src/bin/pgbench/pgbench.c index fbb74bdc4c..c4a44debeb 100644 --- a/src/bin/pgbench/pgbench.c +++ b/src/bin/pgbench/pgbench.c @@ -912,7 +912,7 @@ usage(void) " protocol for submitting queries (default: simple)\n" " -n, --no-vacuum do not run VACUUM before tests\n" " -P, --progress=NUM show thread progress report every NUM seconds\n" - " -r, --report-per-command report latencies, failures and retries per command\n" + " -r, --report-per-command report latencies, failures, and retries per command\n" " -R, --rate=NUM target rate in transactions per second\n" " -s, --scale=NUM report this scale factor in output\n" " -t, --transactions=NUM number of transactions each client runs (default: 10)\n"