Re: TODO: You can alter it, but you can't view it

From: Itagaki Takahiro <itagaki(dot)takahiro(at)gmail(dot)com>
To: Josh Berkus <josh(at)agliodbs(dot)com>
Cc: postgres hackers <pgsql-hackers(at)postgresql(dot)org>
Subject: Re: TODO: You can alter it, but you can't view it
Date: 2010-09-27 05:30:02
Message-ID: AANLkTimzhZUrNhE+MZ_3Zm2e21ABiXAK6=oQG8NysVLQ@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

On Mon, Sep 27, 2010 at 2:19 PM, Josh Berkus <josh(at)agliodbs(dot)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

--
Itagaki Takahiro

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Fujii Masao 2010-09-27 06:34:11 Re: recovery.conf location
Previous Message Josh Berkus 2010-09-27 05:19:04 TODO: You can alter it, but you can't view it