diff options
author | Robert Haas <rhaas@postgresql.org> | 2016-03-29 14:07:55 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2016-03-29 14:07:55 -0400 |
commit | 7f0a2c85fb221bae6908fb2fddad21a4c6d14438 (patch) | |
tree | 4757be653ef28696218c544af9ee7a2eab3724b5 /doc/src | |
parent | d797bf7da2cc954f7b5cd2776b65c6e91cd0cb04 (diff) |
Improve pgbench docs regarding per-transaction logging.
The old documentation didn't know about the new -b flag, only about -f.
Fabien Coelho
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/pgbench.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/pgbench.sgml b/doc/src/sgml/ref/pgbench.sgml index 9707c30c2eb..06cd5db32ed 100644 --- a/doc/src/sgml/ref/pgbench.sgml +++ b/doc/src/sgml/ref/pgbench.sgml @@ -1135,12 +1135,12 @@ END; The format of the log is: <synopsis> -<replaceable>client_id</> <replaceable>transaction_no</> <replaceable>time</> <replaceable>file_no</> <replaceable>time_epoch</> <replaceable>time_us</> <optional><replaceable>schedule_lag</replaceable></optional> +<replaceable>client_id</> <replaceable>transaction_no</> <replaceable>time</> <replaceable>script_no</> <replaceable>time_epoch</> <replaceable>time_us</> <optional><replaceable>schedule_lag</replaceable></optional> </synopsis> where <replaceable>time</> is the total elapsed transaction time in microseconds, - <replaceable>file_no</> identifies which script file was used - (useful when multiple scripts were specified with <option>-f</>), + <replaceable>script_no</> identifies which script file was used (useful when + multiple scripts were specified with <option>-f</> or <option>-b</>), and <replaceable>time_epoch</>/<replaceable>time_us</> are a Unix epoch format time stamp and an offset in microseconds (suitable for creating an ISO 8601 |