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/backend/main | |
| 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/backend/main')
| -rw-r--r-- | src/backend/main/main.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/main/main.c b/src/backend/main/main.c index 9c79e7b78d9..227fcc35e5e 100644 --- a/src/backend/main/main.c +++ b/src/backend/main/main.c @@ -13,7 +13,7 @@ * * * IDENTIFICATION - * $Header: /cvsroot/pgsql/src/backend/main/main.c,v 1.50 2002/04/03 05:39:29 petere Exp $ + * $Header: /cvsroot/pgsql/src/backend/main/main.c,v 1.51 2002/05/17 01:19:17 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -125,7 +125,7 @@ main(int argc, char *argv[]) * and COLLATE will be overridden later from pg_control if we are * in an already-initialized database. We set them here so that * they will be available to fill pg_control during initdb. The - * other ones will get reset later in ResetAllOptions, but we set + * other ones will get reset later in InitializeGUCOptions, but we set * them here to get already localized behavior during startup * (e.g., error messages). */ |
