diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2006-01-05 10:07:46 +0000 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2006-01-05 10:07:46 +0000 |
commit | 86c23a6eb28b0588644dcefeb33ef5a2aa8b9453 (patch) | |
tree | d0497d119ef7cf861fc046c58326a42e47c16c39 /src/include/miscadmin.h | |
parent | 4e1712ea5499ad57d825eefa08e560dad715300c (diff) |
Make all command-line options of postmaster and postgres the same. See
http://archives.postgresql.org/pgsql-hackers/2006-01/msg00151.php for the
complete plan.
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index e354b816c2d..ce56c22d434 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -13,7 +13,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.184 2005/11/22 18:17:29 momjian Exp $ + * $PostgreSQL: pgsql/src/include/miscadmin.h,v 1.185 2006/01/05 10:07:46 petere Exp $ * * NOTES * some of the information in this file should be moved to other files. @@ -306,8 +306,7 @@ extern bool InitPostgres(const char *dbname, const char *username); extern void BaseInit(void); /* in utils/init/miscinit.c */ -extern void IgnoreSystemIndexes(bool mode); -extern bool IsIgnoringSystemIndexes(void); +extern bool IgnoreSystemIndexes; extern void SetReindexProcessing(Oid heapOid, Oid indexOid); extern void ResetReindexProcessing(void); extern bool ReindexIsProcessingHeap(Oid heapOid); |