diff options
author | Tatsuo Ishii | 2000-10-08 09:25:38 +0000 |
---|---|---|
committer | Tatsuo Ishii | 2000-10-08 09:25:38 +0000 |
commit | 2af8b963f1c54ce89e25564301e8583612252ed9 (patch) | |
tree | f8e81862ba95217354a647cb8c325c7c8a92b07d /src/include/miscadmin.h | |
parent | be582825162e329f382286c40f11870fe0fc5f42 (diff) |
Add runtime configuration option "silent_mode".
This is equivalent to postmaster's -S option.
Diffstat (limited to 'src/include/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 2132b3bb28e..fcced217efb 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2000, PostgreSQL, Inc * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: miscadmin.h,v 1.67 2000/09/19 18:17:58 petere Exp $ + * $Id: miscadmin.h,v 1.68 2000/10/08 09:25:38 ishii Exp $ * * NOTES * some of the information in this file will be moved to @@ -108,6 +108,7 @@ extern int SortMem; extern bool NetServer; extern bool EnableSSL; +extern bool SilentMode; extern int MaxBackends; extern int NBuffers; extern int PostPortName; |