File tree Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Expand file tree Collapse file tree 3 files changed +10
-4
lines changed Original file line number Diff line number Diff line change 10
10
* Written by Peter Eisentraut <peter_e@gmx.net>.
11
11
*
12
12
* IDENTIFICATION
13
- * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.141 2003/07/28 00:09:16 tgl Exp $
13
+ * $Header: /cvsroot/pgsql/src/backend/utils/misc/guc.c,v 1.142 2003/07/28 16:22:02 momjian Exp $
14
14
*
15
15
*--------------------------------------------------------------------
16
16
*/
@@ -156,7 +156,7 @@ static char *XactIsoLevel_string;
156
156
157
157
158
158
/*
159
- * Used for pg_settings. Keep in sync with config_type enum above
159
+ * Used for pg_settings. Keep in sync with config_type enum in guc_tables.h
160
160
*/
161
161
static char * config_type_name [] =
162
162
{
@@ -176,6 +176,7 @@ static char *GucContextName[] =
176
176
"sighup" ,
177
177
"backend" ,
178
178
"super-user" ,
179
+ "userlimit" ,
179
180
"user"
180
181
};
181
182
@@ -188,6 +189,7 @@ static char *GucSourceName[] =
188
189
"environment variable" ,
189
190
"configuration file" ,
190
191
"command line" ,
192
+ "userstart" ,
191
193
"database" ,
192
194
"user" ,
193
195
"client" ,
Original file line number Diff line number Diff line change 7
7
* Copyright 2000-2003 by PostgreSQL Global Development Group
8
8
* Written by Peter Eisentraut <peter_e@gmx.net>.
9
9
*
10
- * $Id: guc.h,v 1.36 2003/07/27 04:35:54 momjian Exp $
10
+ * $Id: guc.h,v 1.37 2003/07/28 16:22:13 momjian Exp $
11
11
*--------------------------------------------------------------------
12
12
*/
13
13
#ifndef GUC_H
52
52
* non-super users.
53
53
*
54
54
* USERSET options can be set by anyone any time.
55
+ *
56
+ * Keep in sync with GucContextName in guc.c
55
57
*/
56
58
typedef enum
57
59
{
Original file line number Diff line number Diff line change 7
7
*
8
8
* Portions Copyright (c) 1996-2002, PostgreSQL Global Development Group
9
9
*
10
- * $Id: guc_tables.h,v 1.2 2003/07/27 04:35:54 momjian Exp $
10
+ * $Id: guc_tables.h,v 1.3 2003/07/28 16:22:16 momjian Exp $
11
11
*
12
12
*-------------------------------------------------------------------------
13
13
*/
@@ -58,6 +58,8 @@ enum config_group
58
58
59
59
/*
60
60
* GUC supports these types of variables:
61
+ *
62
+ * Keep in sync with config_type_name in guc.c
61
63
*/
62
64
enum config_type
63
65
{
You can’t perform that action at this time.
0 commit comments