Skip to content

Commit a986143

Browse files
committed
Do not pass "-N" to initdb.
Per buildfarm member hamerkop. Oversight in 9.2 back-patch of commit f6dc6dd; earlier versions lack the affected test suite, and later versions have the "-N" option.
1 parent 7bb78b2 commit a986143

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/tools/msvc/vcregress.pl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -245,7 +245,7 @@ sub contribcheck
245245
sub standard_initdb
246246
{
247247
return (
248-
system('initdb', '-N') == 0 and system(
248+
system('initdb') == 0 and system(
249249
"$topdir/$Config/pg_regress/pg_regress", '--config-auth',
250250
$ENV{PGDATA}) == 0);
251251
}

0 commit comments

Comments
 (0)