7.0 buffer manager can support different backends running with different

fsync settings, so the -F option no longer needs to be treated as secure.
This commit is contained in:
Tom Lane 2000-04-23 00:13:16 +00:00
parent 290978fff0
commit 8994662a0b
1 changed files with 7 additions and 4 deletions

View File

@ -8,7 +8,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.151 2000/04/12 17:15:43 momjian Exp $ * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.152 2000/04/23 00:13:16 tgl Exp $
* *
* NOTES * NOTES
* this is the "main" module of the postgres backend and * this is the "main" module of the postgres backend and
@ -967,10 +967,13 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[])
case 'F': case 'F':
/* -------------------- /* --------------------
* turn off fsync * turn off fsync
*
* 7.0 buffer manager can support different backends running
* with different fsync settings, so this no longer needs
* to be "if (secure)".
* -------------------- * --------------------
*/ */
if (secure) disableFsync = true;
disableFsync = true;
break; break;
case 'f': case 'f':
@ -1452,7 +1455,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[])
if (!IsUnderPostmaster) if (!IsUnderPostmaster)
{ {
puts("\nPOSTGRES backend interactive interface "); puts("\nPOSTGRES backend interactive interface ");
puts("$Revision: 1.151 $ $Date: 2000/04/12 17:15:43 $\n"); puts("$Revision: 1.152 $ $Date: 2000/04/23 00:13:16 $\n");
} }
/* /*