aboutsummaryrefslogtreecommitdiff
path: root/src/include/commands/variable.h
diff options
context:
space:
mode:
authorPeter Eisentraut <peter_e@gmx.net>2000-06-22 22:31:24 +0000
committerPeter Eisentraut <peter_e@gmx.net>2000-06-22 22:31:24 +0000
commitc4465095659bb089e08f8c94ce045ba3572a194f (patch)
tree14b2fcbc9cf78738a235e4b9c7c38c1dce7656f3 /src/include/commands/variable.h
parentbc06269495c42ab7eb15a905d84374f78829a065 (diff)
downloadpostgresql-c4465095659bb089e08f8c94ce045ba3572a194f.tar.gz
postgresql-c4465095659bb089e08f8c94ce045ba3572a194f.zip
Second pass over run-time configuration system. Adjust priorities on some
option settings. Sort out SIGHUP vs BACKEND -- there is no total ordering here, so make explicit checks. Add comments explaining all of this. Removed permissions check on SHOW command. Add examine_subclass to the game, rename to SQL_inheritance to fit the official data model better. Adjust documentation. Standalone backend needs to reset all options before it starts. To facilitate that, have IsUnderPostmaster be set by the postmaster itself, don't wait for the magic -p switch. Also make sure that all environment variables and argv's survive init_ps_display(). Use strdup where necessary. Have initdb make configuration files (postgresql.conf, pg_hba.conf) mode 0600 -- having configuration files is no fun if you can't edit them.
Diffstat (limited to 'src/include/commands/variable.h')
-rw-r--r--src/include/commands/variable.h3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/commands/variable.h b/src/include/commands/variable.h
index de26bcd6e04..87334dda4d4 100644
--- a/src/include/commands/variable.h
+++ b/src/include/commands/variable.h
@@ -2,7 +2,7 @@
* Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var'
* statements
*
- * $Id: variable.h,v 1.11 2000/06/09 01:44:24 momjian Exp $
+ * $Id: variable.h,v 1.12 2000/06/22 22:31:23 petere Exp $
*
*/
#ifndef VARIABLE_H
@@ -13,6 +13,5 @@ extern void GetPGVariable(const char *name);
extern void ResetPGVariable(const char *name);
extern void set_default_datestyle(void);
-extern bool examine_subclass;
#endif /* VARIABLE_H */