pgsql: Make the enumvals column of pg_settings be text[] instead of just

Started by Magnus Haganderover 17 years ago3 messagescomitters
Jump to latest
#1Magnus Hagander
magnus@hagander.net

Log Message:
-----------
Make the enumvals column of pg_settings be text[] instead of just
a comma separated string.

Modified Files:
--------------
pgsql/src/backend/utils/misc:
guc.c (r1.479 -> r1.480)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/guc.c?r1=1.479&r2=1.480)
pgsql/src/include/catalog:
catversion.h (r1.508 -> r1.509)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/catalog/catversion.h?r1=1.508&r2=1.509)
pg_proc.h (r1.528 -> r1.529)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/catalog/pg_proc.h?r1=1.528&r2=1.529)
pg_type.h (r1.202 -> r1.203)
(http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/catalog/pg_type.h?r1=1.202&r2=1.203)

#2Tom Lane
tgl@sss.pgh.pa.us
In reply to: Magnus Hagander (#1)
Re: pgsql: Make the enumvals column of pg_settings be text[] instead of just

mha@postgresql.org (Magnus Hagander) writes:

Log Message:
-----------
Make the enumvals column of pg_settings be text[] instead of just
a comma separated string.

Shouldn't there be a docs update in there? At least in catalogs.sgml?

regards, tom lane

#3Magnus Hagander
magnus@hagander.net
In reply to: Tom Lane (#2)
Re: pgsql: Make the enumvals column of pg_settings be text[] instead of just

Tom Lane wrote:

mha@postgresql.org (Magnus Hagander) writes:

Log Message:
-----------
Make the enumvals column of pg_settings be text[] instead of just
a comma separated string.

Shouldn't there be a docs update in there? At least in catalogs.sgml?

There certainly should. Will fix. I can only find that one place though,
but that's certainly wrong...

//Magnus