diff options
author | Bruce Momjian | 1999-03-17 22:53:31 +0000 |
---|---|---|
committer | Bruce Momjian | 1999-03-17 22:53:31 +0000 |
commit | 58118db39dba592fad26d781b686f0d56c1ba649 (patch) | |
tree | a59a5900f1f1385c1b2cd9d49bffe8ced1b69a29 /src/include/miscadmin.h | |
parent | 62a7754e1ae2d817f87594eeae549a82097d8693 (diff) |
Add new postgres -O option to allow system table structure changes.
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 01ceb9d7876..fa5397f070e 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -11,7 +11,7 @@ * * Copyright (c) 1994, Regents of the University of California * - * $Id: miscadmin.h,v 1.35 1999/02/13 23:20:46 momjian Exp $ + * $Id: miscadmin.h,v 1.36 1999/03/17 22:53:30 momjian Exp $ * * NOTES * some of the information in this file will be moved to @@ -94,7 +94,8 @@ extern char CTZName[]; extern char FloatFormat[]; extern char DateFormat[]; -extern int fsyncOff; +extern bool disableFsync; +extern bool allowSystemTableMods; extern int SortMem; extern Oid LastOidProcessed; /* for query rewrite */ |