From 6a68f42648f54690ad5b5ae6fb9104e86e15f0f1 Mon Sep 17 00:00:00 2001 From: Peter Eisentraut Date: Wed, 31 May 2000 00:28:42 +0000 Subject: The heralded `Grand Unified Configuration scheme' (GUC) That means you can now set your options in either or all of $PGDATA/configuration, some postmaster option (--enable-fsync=off), or set a SET command. The list of options is in backend/utils/misc/guc.c, documentation will be written post haste. pg_options is gone, so is that pq_geqo config file. Also removed were backend -K, -Q, and -T options (no longer applicable, although -d0 does the same as -Q). Added to configure an --enable-syslog option. changed all callers from TPRINTF to elog(DEBUG) --- src/include/commands/variable.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/include/commands/variable.h') diff --git a/src/include/commands/variable.h b/src/include/commands/variable.h index c9b39d93cb5..682d84e3ca8 100644 --- a/src/include/commands/variable.h +++ b/src/include/commands/variable.h @@ -2,15 +2,15 @@ * Headers for handling of 'SET var TO', 'SHOW var' and 'RESET var' * statements * - * $Id: variable.h,v 1.9 2000/02/19 22:10:43 tgl Exp $ + * $Id: variable.h,v 1.10 2000/05/31 00:28:37 petere Exp $ * */ #ifndef VARIABLE_H -#define VARIABLE_H 1 +#define VARIABLE_H -extern bool SetPGVariable(const char *name, const char *value); -extern bool GetPGVariable(const char *name); -extern bool ResetPGVariable(const char *name); +extern void SetPGVariable(const char *name, const char *value); +extern void GetPGVariable(const char *name); +extern void ResetPGVariable(const char *name); extern void set_default_datestyle(void); -- cgit v1.2.3