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/miscadmin.h | |
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/miscadmin.h')
-rw-r--r-- | src/include/miscadmin.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/include/miscadmin.h b/src/include/miscadmin.h index 09e1c0fe635..2e5fc76bb7d 100644 --- a/src/include/miscadmin.h +++ b/src/include/miscadmin.h @@ -12,7 +12,7 @@ * Portions Copyright (c) 1996-2001, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $Id: miscadmin.h,v 1.103 2002/05/05 00:03:29 tgl Exp $ + * $Id: miscadmin.h,v 1.104 2002/05/17 01:19:19 tgl Exp $ * * NOTES * some of the information in this file should be moved to @@ -211,7 +211,7 @@ extern Oid GetSessionUserId(void); extern void SetSessionUserId(Oid userid); extern void InitializeSessionUserId(const char *username); extern void InitializeSessionUserIdStandalone(void); -extern void SetSessionAuthorization(const char *username); +extern void SetSessionAuthorization(Oid userid); extern void SetDataDir(const char *dir); |