Re: show() function

From: Joe Conway <mail(at)joeconway(dot)com>
To: Rod Taylor <rbt(at)zort(dot)ca>
Cc: pgsql-patches(at)postgresql(dot)org
Subject: Re: show() function
Date: 2002-07-15 01:43:12
Message-ID: 3D3228B0.4040000@joeconway.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

Rod Taylor wrote:
>>test=# show all;
>> name | setting
>>-------------------------------+---------------------------------------
>> australian_timezones | off
>> authentication_timeout | 60
>
>
>
> Does this mean I could capture the output? I.e. Does anything special
> need to happen to have JDBC and friends return a vector with the info?
>

I'm not sure how the various interfaces will handle this. I have an SRF
in the form of a contrib function that I'm sure will work with any
interface, but I have yet to get it accepted into cvs for a variety of
reasons. That's the contib/showguc show_all_vars() function I referred
in the post you are replying to. E.g.:

test=# select * from show_all_vars();
varname | varval
-------------------------------+---------------------------------------
australian_timezones | off
authentication_timeout | 60
checkpoint_segments | 3
.
.
.
wal_debug | 0
wal_files | 0
wal_sync_method | fdatasync
(96 rows)

I *think* this function, probably renamed, will end up in
contrib/tablefunc or something similar.

Joe

In response to

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Rod Taylor 2002-07-15 01:47:38 Re: show() function
Previous Message Rod Taylor 2002-07-15 01:33:20 Re: show() function