Re: changing log_min_duration_statement

From: Ben Chobot <bench(at)silentmedia(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-general <pgsql-general(at)postgresql(dot)org>
Subject: Re: changing log_min_duration_statement
Date: 2010-01-19 22:53:39
Message-ID: 7E01B910-CEC8-43B1-9015-B4D676E2B596@silentmedia.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Jan 19, 2010, at 2:32 PM, Tom Lane wrote:

> You might try looking at the pg_settings row for the variable to see
> what it says the source is.

That's interesting:

foo# select source from pg_settings where name='log_min_duration_statement';
source
----------
database

foo# alter database foo reset log_min_duration_statement;
ALTER DATABASE

foo# select source from pg_settings where name='log_min_duration_statement';
source
----------
database

Shouldn't the source change to "config file" after the reset?

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2010-01-19 22:57:43 Re: changing log_min_duration_statement
Previous Message Tom Lane 2010-01-19 22:32:29 Re: changing log_min_duration_statement