diff options
| author | Tom Lane | 2002-05-17 01:19:19 +0000 |
|---|---|---|
| committer | Tom Lane | 2002-05-17 01:19:19 +0000 |
| commit | f0811a74b37427d7ee5eee56b00f7f2ea323d7d6 (patch) | |
| tree | 51a596c44fd21144383062aa7d2ce852ae270268 /src/include/access | |
| parent | fa613fa1eafd8fd80272a31e8477ad9368c95dbb (diff) | |
Merge the last few variable.c configuration variables into the generic
GUC support. It's now possible to set datestyle, timezone, and
client_encoding from postgresql.conf and per-database or per-user
settings. Also, implement rollback of SET commands that occur in a
transaction that later fails. Create a SET LOCAL var = value syntax
that sets the variable only for the duration of the current transaction.
All per previous discussions in pghackers.
Diffstat (limited to 'src/include/access')
| -rw-r--r-- | src/include/access/xlog.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/include/access/xlog.h b/src/include/access/xlog.h index 9252a8d324a..92e74b88d7e 100644 --- a/src/include/access/xlog.h +++ b/src/include/access/xlog.h @@ -6,7 +6,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: xlog.h,v 1.29 2002/03/15 19:20:36 tgl Exp $ + * $Id: xlog.h,v 1.30 2002/05/17 01:19:19 tgl Exp $ */ #ifndef XLOG_H #define XLOG_H @@ -216,7 +216,7 @@ extern XLogRecPtr GetRedoRecPtr(void); */ extern XLogRecPtr GetUndoRecPtr(void); -extern bool check_xlog_sync_method(const char *method); -extern void assign_xlog_sync_method(const char *method); +extern const char *assign_xlog_sync_method(const char *method, + bool doit, bool interactive); #endif /* XLOG_H */ |
