1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-15 19:21:59 +03:00

Remove useless database name from bootstrap argument processing (including

startup and bgwriter processes), and the -y flag.  It's not used anywhere.
This commit is contained in:
Alvaro Herrera
2007-02-16 02:10:07 +00:00
parent 6bef118b01
commit 68046a20c7
4 changed files with 10 additions and 34 deletions

View File

@ -37,7 +37,7 @@
*
*
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.522 2007/02/15 23:23:23 alvherre Exp $
* $PostgreSQL: pgsql/src/backend/postmaster/postmaster.c,v 1.523 2007/02/16 02:10:07 alvherre Exp $
*
* NOTES
*
@ -3729,9 +3729,6 @@ StartChildProcess(int xlop)
snprintf(xlbuf, sizeof(xlbuf), "-x%d", xlop);
av[ac++] = xlbuf;
av[ac++] = "-y";
av[ac++] = "template1";
av[ac] = NULL;
Assert(ac < lengthof(av));