diff options
author | Bruce Momjian <bruce@momjian.us> | 1999-09-27 20:27:32 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 1999-09-27 20:27:32 +0000 |
commit | d62a7ac6d39702f6df4d119d0d2e3ba7b382e203 (patch) | |
tree | 32c6f5d88e826a992dae8aeaabdee4bd54429d4b /src/backend/bootstrap/bootstrap.c | |
parent | 5a017b96ad4a5b02907c6cea651d711f8fca615a (diff) | |
download | postgresql-d62a7ac6d39702f6df4d119d0d2e3ba7b382e203.tar.gz postgresql-d62a7ac6d39702f6df4d119d0d2e3ba7b382e203.zip |
Massimo's SET FSYNC and SHOW PG_OPTIONS changes, without SET QUERY_LIMIT.
Diffstat (limited to 'src/backend/bootstrap/bootstrap.c')
-rw-r--r-- | src/backend/bootstrap/bootstrap.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/bootstrap/bootstrap.c b/src/backend/bootstrap/bootstrap.c index 18d9567ab89..c20a63fc6dc 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.67 1999/09/18 19:06:27 tgl Exp $ + * $Header: /cvsroot/pgsql/src/backend/bootstrap/bootstrap.c,v 1.68 1999/09/27 20:26:58 momjian Exp $ * *------------------------------------------------------------------------- */ @@ -134,7 +134,6 @@ 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 bool disableFsync; /* do not fsync the database */ int DebugMode; static GlobalMemory nogc = (GlobalMemory) NULL; /* special no-gc mem |