aboutsummaryrefslogtreecommitdiff
path: root/src/backend/bootstrap
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>1999-03-17 22:53:31 +0000
committerBruce Momjian <bruce@momjian.us>1999-03-17 22:53:31 +0000
commit58118db39dba592fad26d781b686f0d56c1ba649 (patch)
treea59a5900f1f1385c1b2cd9d49bffe8ced1b69a29 /src/backend/bootstrap
parent62a7754e1ae2d817f87594eeae549a82097d8693 (diff)
downloadpostgresql-58118db39dba592fad26d781b686f0d56c1ba649.tar.gz
postgresql-58118db39dba592fad26d781b686f0d56c1ba649.zip
Add new postgres -O option to allow system table structure changes.
Diffstat (limited to 'src/backend/bootstrap')
-rw-r--r--src/backend/bootstrap/bootstrap.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c
index 997e59ba955..eacb0129f6b 100644
--- a/src/backend/bootstrap/bootstrap.c
+++ b/src/backend/bootstrap/bootstrap.c
@@ -7,7 +7,7 @@
* Copyright (c) 1994, Regents of the University of California
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.55 1999/02/13 23:14:52 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.56 1999/03/17 22:52:45 momjian Exp $
*
*-------------------------------------------------------------------------
*/
@@ -182,7 +182,7 @@ static char *relname; /* current relation name */
Form_pg_attribute attrtypes[MAXATTR]; /* points to attribute info */
static char *values[MAXATTR]; /* cooresponding attribute values */
int numattr; /* number of attributes for cur. rel */
-extern int fsyncOff; /* do not fsync the database */
+extern bool disableFsync; /* do not fsync the database */
/* The test for HAVE_SIGSETJMP fails on Linux 2.0.x because the test
* explicitly disallows sigsetjmp being a #define, which is how it
@@ -335,7 +335,7 @@ BootstrapMain(int argc, char *argv[])
Noversion = true;
break;
case 'F':
- fsyncOff = true;
+ disableFsync = true;
break;
case 'O':
override = true;