Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
Postgres FD Implementation
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Abuhujair Javed
Postgres FD Implementation
Commits
ab0a37fe
Commit
ab0a37fe
authored
Nov 21, 2008
by
Magnus Hagander
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Make the enumvals column of pg_settings be text[] instead of just
a comma separated string.
parent
47d6d641
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
22 additions
and
17 deletions
+22
-17
src/backend/utils/misc/guc.c
src/backend/utils/misc/guc.c
+16
-12
src/include/catalog/catversion.h
src/include/catalog/catversion.h
+2
-2
src/include/catalog/pg_proc.h
src/include/catalog/pg_proc.h
+2
-2
src/include/catalog/pg_type.h
src/include/catalog/pg_type.h
+2
-1
No files found.
src/backend/utils/misc/guc.c
View file @
ab0a37fe
...
@@ -10,7 +10,7 @@
...
@@ -10,7 +10,7 @@
* Written by Peter Eisentraut <peter_e@gmx.net>.
* Written by Peter Eisentraut <peter_e@gmx.net>.
*
*
* IDENTIFICATION
* IDENTIFICATION
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.4
79 2008/11/19 02:07:07 tgl
Exp $
* $PostgreSQL: pgsql/src/backend/utils/misc/guc.c,v 1.4
80 2008/11/21 18:49:24 mha
Exp $
*
*
*--------------------------------------------------------------------
*--------------------------------------------------------------------
*/
*/
...
@@ -168,11 +168,14 @@ static bool assign_maxconnections(int newval, bool doit, GucSource source);
...
@@ -168,11 +168,14 @@ static bool assign_maxconnections(int newval, bool doit, GucSource source);
static
const
char
*
assign_pgstat_temp_directory
(
const
char
*
newval
,
bool
doit
,
GucSource
source
);
static
const
char
*
assign_pgstat_temp_directory
(
const
char
*
newval
,
bool
doit
,
GucSource
source
);
static
char
*
config_enum_get_options
(
struct
config_enum
*
record
,
static
char
*
config_enum_get_options
(
struct
config_enum
*
record
,
const
char
*
prefix
,
const
char
*
suffix
);
const
char
*
prefix
,
const
char
*
suffix
,
const
char
*
separator
);
/*
/*
* Options for enum values defined in this module.
* Options for enum values defined in this module.
*
* NOTE! Option values may not contain double quotes!
*/
*/
/*
/*
...
@@ -4427,7 +4430,8 @@ config_enum_lookup_by_name(struct config_enum *record, const char *value, int *r
...
@@ -4427,7 +4430,8 @@ config_enum_lookup_by_name(struct config_enum *record, const char *value, int *r
* If suffix is non-NULL, it is added to the end of the string.
* If suffix is non-NULL, it is added to the end of the string.
*/
*/
static
char
*
static
char
*
config_enum_get_options
(
struct
config_enum
*
record
,
const
char
*
prefix
,
const
char
*
suffix
)
config_enum_get_options
(
struct
config_enum
*
record
,
const
char
*
prefix
,
const
char
*
suffix
,
const
char
*
separator
)
{
{
const
struct
config_enum_entry
*
entry
=
record
->
options
;
const
struct
config_enum_entry
*
entry
=
record
->
options
;
int
len
=
0
;
int
len
=
0
;
...
@@ -4439,7 +4443,7 @@ config_enum_get_options(struct config_enum *record, const char *prefix, const ch
...
@@ -4439,7 +4443,7 @@ config_enum_get_options(struct config_enum *record, const char *prefix, const ch
while
(
entry
&&
entry
->
name
)
while
(
entry
&&
entry
->
name
)
{
{
if
(
!
entry
->
hidden
)
if
(
!
entry
->
hidden
)
len
+=
strlen
(
entry
->
name
)
+
2
;
/* string and ", " */
len
+=
strlen
(
entry
->
name
)
+
strlen
(
separator
);
entry
++
;
entry
++
;
}
}
...
@@ -4454,7 +4458,7 @@ config_enum_get_options(struct config_enum *record, const char *prefix, const ch
...
@@ -4454,7 +4458,7 @@ config_enum_get_options(struct config_enum *record, const char *prefix, const ch
if
(
!
entry
->
hidden
)
if
(
!
entry
->
hidden
)
{
{
strcat
(
hintmsg
,
entry
->
name
);
strcat
(
hintmsg
,
entry
->
name
);
strcat
(
hintmsg
,
", "
);
strcat
(
hintmsg
,
separator
);
}
}
entry
++
;
entry
++
;
...
@@ -4469,16 +4473,15 @@ config_enum_get_options(struct config_enum *record, const char *prefix, const ch
...
@@ -4469,16 +4473,15 @@ config_enum_get_options(struct config_enum *record, const char *prefix, const ch
* to make sure we don't write to invalid memory instead of actually
* to make sure we don't write to invalid memory instead of actually
* trying to do something smart with it.
* trying to do something smart with it.
*/
*/
if
(
len
>
1
)
if
(
len
>
=
strlen
(
separator
)
)
/* Replace final
comma/space
*/
/* Replace final
separator
*/
hintmsg
[
len
-
2
]
=
'\0'
;
hintmsg
[
len
-
strlen
(
separator
)
]
=
'\0'
;
strcat
(
hintmsg
,
suffix
);
strcat
(
hintmsg
,
suffix
);
return
hintmsg
;
return
hintmsg
;
}
}
/*
/*
* Call a GucStringAssignHook function, being careful to free the
* Call a GucStringAssignHook function, being careful to free the
* "newval" string if the hook ereports.
* "newval" string if the hook ereports.
...
@@ -5044,7 +5047,7 @@ set_config_option(const char *name, const char *value,
...
@@ -5044,7 +5047,7 @@ set_config_option(const char *name, const char *value,
{
{
if
(
!
config_enum_lookup_by_name
(
conf
,
value
,
&
newval
))
if
(
!
config_enum_lookup_by_name
(
conf
,
value
,
&
newval
))
{
{
char
*
hintmsg
=
config_enum_get_options
(
conf
,
"Available values: "
,
"."
);
char
*
hintmsg
=
config_enum_get_options
(
conf
,
"Available values: "
,
"."
,
", "
);
ereport
(
elevel
,
ereport
(
elevel
,
(
errcode
(
ERRCODE_INVALID_PARAMETER_VALUE
),
(
errcode
(
ERRCODE_INVALID_PARAMETER_VALUE
),
...
@@ -6249,7 +6252,8 @@ GetConfigOptionByNum(int varnum, const char **values, bool *noshow)
...
@@ -6249,7 +6252,8 @@ GetConfigOptionByNum(int varnum, const char **values, bool *noshow)
values
[
10
]
=
NULL
;
values
[
10
]
=
NULL
;
/* enumvals */
/* enumvals */
values
[
11
]
=
config_enum_get_options
((
struct
config_enum
*
)
conf
,
""
,
""
);
/* NOTE! enumvals with double quotes in them are not supported! */
values
[
11
]
=
config_enum_get_options
((
struct
config_enum
*
)
conf
,
"{
\"
"
,
"
\"
}"
,
"
\"
,
\"
"
);
/* boot_val */
/* boot_val */
values
[
12
]
=
pstrdup
(
config_enum_lookup_by_value
(
lconf
,
lconf
->
boot_val
));
values
[
12
]
=
pstrdup
(
config_enum_lookup_by_value
(
lconf
,
lconf
->
boot_val
));
...
@@ -6385,7 +6389,7 @@ show_all_settings(PG_FUNCTION_ARGS)
...
@@ -6385,7 +6389,7 @@ show_all_settings(PG_FUNCTION_ARGS)
TupleDescInitEntry
(
tupdesc
,
(
AttrNumber
)
11
,
"max_val"
,
TupleDescInitEntry
(
tupdesc
,
(
AttrNumber
)
11
,
"max_val"
,
TEXTOID
,
-
1
,
0
);
TEXTOID
,
-
1
,
0
);
TupleDescInitEntry
(
tupdesc
,
(
AttrNumber
)
12
,
"enumvals"
,
TupleDescInitEntry
(
tupdesc
,
(
AttrNumber
)
12
,
"enumvals"
,
TEXTOID
,
-
1
,
0
);
TEXT
ARRAY
OID
,
-
1
,
0
);
TupleDescInitEntry
(
tupdesc
,
(
AttrNumber
)
13
,
"boot_val"
,
TupleDescInitEntry
(
tupdesc
,
(
AttrNumber
)
13
,
"boot_val"
,
TEXTOID
,
-
1
,
0
);
TEXTOID
,
-
1
,
0
);
TupleDescInitEntry
(
tupdesc
,
(
AttrNumber
)
14
,
"reset_val"
,
TupleDescInitEntry
(
tupdesc
,
(
AttrNumber
)
14
,
"reset_val"
,
...
...
src/include/catalog/catversion.h
View file @
ab0a37fe
...
@@ -37,7 +37,7 @@
...
@@ -37,7 +37,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.50
8 2008/11/15 19:43:46 tgl
Exp $
* $PostgreSQL: pgsql/src/include/catalog/catversion.h,v 1.50
9 2008/11/21 18:49:24 mha
Exp $
*
*
*-------------------------------------------------------------------------
*-------------------------------------------------------------------------
*/
*/
...
@@ -53,6 +53,6 @@
...
@@ -53,6 +53,6 @@
*/
*/
/* yyyymmddN */
/* yyyymmddN */
#define CATALOG_VERSION_NO 200811
15
1
#define CATALOG_VERSION_NO 200811
21
1
#endif
#endif
src/include/catalog/pg_proc.h
View file @
ab0a37fe
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.52
8 2008/11/14 00:51:46 tgl
Exp $
* $PostgreSQL: pgsql/src/include/catalog/pg_proc.h,v 1.52
9 2008/11/21 18:49:24 mha
Exp $
*
*
* NOTES
* NOTES
* The script catalog/genbki.sh reads this file and generates .bki
* The script catalog/genbki.sh reads this file and generates .bki
...
@@ -3166,7 +3166,7 @@ DATA(insert OID = 2077 ( current_setting PGNSP PGUID 12 1 0 0 f f t f s 1 25 "2
...
@@ -3166,7 +3166,7 @@ DATA(insert OID = 2077 ( current_setting PGNSP PGUID 12 1 0 0 f f t f s 1 25 "2
DESCR
(
"SHOW X as a function"
);
DESCR
(
"SHOW X as a function"
);
DATA
(
insert
OID
=
2078
(
set_config
PGNSP
PGUID
12
1
0
0
f
f
f
f
v
3
25
"25 25 16"
_null_
_null_
_null_
set_config_by_name
_null_
_null_
_null_
));
DATA
(
insert
OID
=
2078
(
set_config
PGNSP
PGUID
12
1
0
0
f
f
f
f
v
3
25
"25 25 16"
_null_
_null_
_null_
set_config_by_name
_null_
_null_
_null_
));
DESCR
(
"SET X as a function"
);
DESCR
(
"SET X as a function"
);
DATA
(
insert
OID
=
2084
(
pg_show_all_settings
PGNSP
PGUID
12
1
1000
0
f
f
t
t
s
0
2249
""
"{25,25,25,25,25,25,25,25,25,25,25,
25
,25,25,25,23}"
"{o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o}"
"{name,setting,unit,category,short_desc,extra_desc,context,vartype,source,min_val,max_val,enumvals,boot_val,reset_val,sourcefile,sourceline}"
show_all_settings
_null_
_null_
_null_
));
DATA
(
insert
OID
=
2084
(
pg_show_all_settings
PGNSP
PGUID
12
1
1000
0
f
f
t
t
s
0
2249
""
"{25,25,25,25,25,25,25,25,25,25,25,
1009
,25,25,25,23}"
"{o,o,o,o,o,o,o,o,o,o,o,o,o,o,o,o}"
"{name,setting,unit,category,short_desc,extra_desc,context,vartype,source,min_val,max_val,enumvals,boot_val,reset_val,sourcefile,sourceline}"
show_all_settings
_null_
_null_
_null_
));
DESCR
(
"SHOW ALL as a function"
);
DESCR
(
"SHOW ALL as a function"
);
DATA
(
insert
OID
=
1371
(
pg_lock_status
PGNSP
PGUID
12
1
1000
0
f
f
t
t
v
0
2249
""
"{25,26,26,23,21,25,28,26,26,21,25,23,25,16}"
"{o,o,o,o,o,o,o,o,o,o,o,o,o,o}"
"{locktype,database,relation,page,tuple,virtualxid,transactionid,classid,objid,objsubid,virtualtransaction,pid,mode,granted}"
pg_lock_status
_null_
_null_
_null_
));
DATA
(
insert
OID
=
1371
(
pg_lock_status
PGNSP
PGUID
12
1
1000
0
f
f
t
t
v
0
2249
""
"{25,26,26,23,21,25,28,26,26,21,25,23,25,16}"
"{o,o,o,o,o,o,o,o,o,o,o,o,o,o}"
"{locktype,database,relation,page,tuple,virtualxid,transactionid,classid,objid,objsubid,virtualtransaction,pid,mode,granted}"
pg_lock_status
_null_
_null_
_null_
));
DESCR
(
"view system lock information"
);
DESCR
(
"view system lock information"
);
...
...
src/include/catalog/pg_type.h
View file @
ab0a37fe
...
@@ -8,7 +8,7 @@
...
@@ -8,7 +8,7 @@
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1996-2008, PostgreSQL Global Development Group
* Portions Copyright (c) 1994, Regents of the University of California
* Portions Copyright (c) 1994, Regents of the University of California
*
*
* $PostgreSQL: pgsql/src/include/catalog/pg_type.h,v 1.20
2 2008/11/14 02:09:52 tgl
Exp $
* $PostgreSQL: pgsql/src/include/catalog/pg_type.h,v 1.20
3 2008/11/21 18:49:24 mha
Exp $
*
*
* NOTES
* NOTES
* the genbki.sh script reads this file and generates .bki
* the genbki.sh script reads this file and generates .bki
...
@@ -435,6 +435,7 @@ DATA(insert OID = 1007 ( _int4 PGNSP PGUID -1 f b A f t \054 0 23 0 array_in
...
@@ -435,6 +435,7 @@ DATA(insert OID = 1007 ( _int4 PGNSP PGUID -1 f b A f t \054 0 23 0 array_in
#define INT4ARRAYOID 1007
#define INT4ARRAYOID 1007
DATA
(
insert
OID
=
1008
(
_regproc
PGNSP
PGUID
-
1
f
b
A
f
t
\
054
0
24
0
array_in
array_out
array_recv
array_send
-
-
-
i
x
f
0
-
1
0
_null_
_null_
));
DATA
(
insert
OID
=
1008
(
_regproc
PGNSP
PGUID
-
1
f
b
A
f
t
\
054
0
24
0
array_in
array_out
array_recv
array_send
-
-
-
i
x
f
0
-
1
0
_null_
_null_
));
DATA
(
insert
OID
=
1009
(
_text
PGNSP
PGUID
-
1
f
b
A
f
t
\
054
0
25
0
array_in
array_out
array_recv
array_send
-
-
-
i
x
f
0
-
1
0
_null_
_null_
));
DATA
(
insert
OID
=
1009
(
_text
PGNSP
PGUID
-
1
f
b
A
f
t
\
054
0
25
0
array_in
array_out
array_recv
array_send
-
-
-
i
x
f
0
-
1
0
_null_
_null_
));
#define TEXTARRAYOID 1009
DATA
(
insert
OID
=
1028
(
_oid
PGNSP
PGUID
-
1
f
b
A
f
t
\
054
0
26
0
array_in
array_out
array_recv
array_send
-
-
-
i
x
f
0
-
1
0
_null_
_null_
));
DATA
(
insert
OID
=
1028
(
_oid
PGNSP
PGUID
-
1
f
b
A
f
t
\
054
0
26
0
array_in
array_out
array_recv
array_send
-
-
-
i
x
f
0
-
1
0
_null_
_null_
));
DATA
(
insert
OID
=
1010
(
_tid
PGNSP
PGUID
-
1
f
b
A
f
t
\
054
0
27
0
array_in
array_out
array_recv
array_send
-
-
-
i
x
f
0
-
1
0
_null_
_null_
));
DATA
(
insert
OID
=
1010
(
_tid
PGNSP
PGUID
-
1
f
b
A
f
t
\
054
0
27
0
array_in
array_out
array_recv
array_send
-
-
-
i
x
f
0
-
1
0
_null_
_null_
));
DATA
(
insert
OID
=
1011
(
_xid
PGNSP
PGUID
-
1
f
b
A
f
t
\
054
0
28
0
array_in
array_out
array_recv
array_send
-
-
-
i
x
f
0
-
1
0
_null_
_null_
));
DATA
(
insert
OID
=
1011
(
_xid
PGNSP
PGUID
-
1
f
b
A
f
t
\
054
0
28
0
array_in
array_out
array_recv
array_send
-
-
-
i
x
f
0
-
1
0
_null_
_null_
));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment