Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit 43a15eb

Browse files
committed
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 <ilya.evdokimov@tantorlabs.com> Discussion: https://postgr.es/m/6e6c4dea-07a1-4a83-9bb7-77b9b3324c37@tantorlabs.com
1 parent b998fed commit 43a15eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/test/regress/pg_regress.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1335,7 +1335,7 @@ make_directory(const char *dir)
13351335
}
13361336

13371337
/*
1338-
* In: filename.ext, Return: filename_i.ext, where 0 < i <= 9
1338+
* In: filename.ext, Return: filename_i.ext, where 0 <= i <= 9
13391339
*/
13401340
static char *
13411341
get_alternative_expectfile(const char *expectfile, int i)

0 commit comments

Comments
 (0)