diff options
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/miscadmin.h | 5 | ||||
| -rw-r--r-- | src/include/tcop/tcopprot.h | 6 |
2 files changed, 7 insertions, 4 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index e354b816c2..ce56c22d43 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); diff --git a/src/include/tcop/tcopprot.h b/src/include/tcop/tcopprot.h index 1f03f546c8..ebcfec2690 100644 --- a/src/include/tcop/tcopprot.h +++ b/src/include/tcop/tcopprot.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2005, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/tcop/tcopprot.h,v 1.78 2005/10/15 02:49:46 momjian Exp $ + * $PostgreSQL: pgsql/src/include/tcop/tcopprot.h,v 1.79 2006/01/05 10:07:46 petere Exp $ * * OLD COMMENTS * This file was created so that other c files could get the two @@ -28,6 +28,7 @@ extern CommandDest whereToSendOutput; extern DLLIMPORT const char *debug_query_string; extern int max_stack_depth; +extern int PostAuthDelay; /* GUC-configurable parameters */ @@ -67,5 +68,8 @@ extern void ResetUsage(void); extern void ShowUsage(const char *title); extern void set_debug_options(int debug_flag, GucContext context, GucSource source); +extern bool set_plan_disabling_options(const char *arg, + GucContext context, GucSource source); +extern const char *get_stats_option_name(const char *arg); #endif /* TCOPPROT_H */ |
