|
8 | 8 | *
|
9 | 9 | *
|
10 | 10 | * IDENTIFICATION
|
11 |
| - * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.151 2000/04/12 17:15:43 momjian Exp $ |
| 11 | + * $Header: /cvsroot/pgsql/src/backend/tcop/postgres.c,v 1.152 2000/04/23 00:13:16 tgl Exp $ |
12 | 12 | *
|
13 | 13 | * NOTES
|
14 | 14 | * 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[])
|
967 | 967 | case'F':
|
968 | 968 | /* --------------------
|
969 | 969 | *turn off fsync
|
| 970 | + * |
| 971 | + *7.0 buffer manager can support different backends running |
| 972 | + *with different fsync settings, so this no longer needs |
| 973 | + *to be "if (secure)". |
970 | 974 | * --------------------
|
971 | 975 | */
|
972 |
| -if (secure) |
973 |
| -disableFsync= true; |
| 976 | +disableFsync= true; |
974 | 977 | break;
|
975 | 978 |
|
976 | 979 | case'f':
|
@@ -1452,7 +1455,7 @@ PostgresMain(int argc, char *argv[], int real_argc, char *real_argv[])
|
1452 | 1455 | if (!IsUnderPostmaster)
|
1453 | 1456 | {
|
1454 | 1457 | puts("\nPOSTGRES backend interactive interface ");
|
1455 |
| -puts("$Revision: 1.151 $ $Date: 2000/04/12 17:15:43 $\n"); |
| 1458 | +puts("$Revision: 1.152 $ $Date: 2000/04/23 00:13:16 $\n"); |
1456 | 1459 | }
|
1457 | 1460 |
|
1458 | 1461 | /*
|
|