diff options
author | Tom Lane | 2025-02-03 03:37:13 +0000 |
---|---|---|
committer | Tom Lane | 2025-02-03 03:37:13 +0000 |
commit | 43a15eb9400dba2b0b97be72d1a3745a6a6f7136 (patch) | |
tree | 69458e734e40ea6d34311c9ad8a39ee67225b866 | |
parent | b998fedab74c6cf4e564c17f4171881759a093ee (diff) |
Fix incorrect range in pg_regress comment.
A comment in pg_regress incorrectly stated that alternative
output files could be named test_{i}.out with 0 < i <= 9.
However, the valid range is actually 0 <= i <= 9.
(The user-facing docs have this right already.)
Author: Ilia Evdokimov <[email protected]>
Discussion: https://postgr.es/m/[email protected]
-rw-r--r-- | src/test/regress/pg_regress.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/regress/pg_regress.c b/src/test/regress/pg_regress.c index 61a234ae218..5d85dcc62f0 100644 --- a/src/test/regress/pg_regress.c +++ b/src/test/regress/pg_regress.c @@ -1335,7 +1335,7 @@ make_directory(const char *dir) } /* - * In: filename.ext, Return: filename_i.ext, where 0 < i <= 9 + * In: filename.ext, Return: filename_i.ext, where 0 <= i <= 9 */ static char * get_alternative_expectfile(const char *expectfile, int i) |