Re: TODO: You can alter it, but you can't view it - Mailing list pgsql-hackers

From Bruce Momjian
Subject Re: TODO: You can alter it, but you can't view it
Date
Msg-id 201102220225.p1M2P4G14119@momjian.us
Whole thread Raw
In response to Re: TODO: You can alter it, but you can't view it  (Itagaki Takahiro <itagaki.takahiro@gmail.com>)
Responses Re: TODO: You can alter it, but you can't view it  (Josh Berkus <josh@agliodbs.com>)
List pgsql-hackers
Itagaki Takahiro wrote:
> On Mon, Sep 27, 2010 at 2:19 PM, Josh Berkus <josh@agliodbs.com> wrote:
> > While working on some database maintenance, I was just tripped up by the
> > fact that there is no good way to query reloptions for tables. ?By "no good
> > way" I mean "no way which does not involve UNNEST and regexps or procedural
> > code".
> 
> Can you use pg_options_to_table() for your purpose?
> 
> =# CREATE TABLE tbl (i integer) with (fillfactor = 70);
> =# SELECT (pg_options_to_table(reloptions)).* FROM pg_class WHERE oid
> = 'tbl'::regclass;
>  option_name | option_value
> -------------+--------------
>  fillfactor  | 70

Right now pg_options_to_table() is not documented.  Should it be?

--  Bruce Momjian  <bruce@momjian.us>        http://momjian.us EnterpriseDB
http://enterprisedb.com
 + It's impossible for everything to be true. +


pgsql-hackers by date:

Previous
From: Itagaki Takahiro
Date:
Subject: Re: validating foreign tables
Next
From: Bruce Momjian
Date:
Subject: Re: configure gaps