Re: How compare current_setting(..) ?

From: "Sabin Coanda" <sabin(dot)coanda(at)deuromedia(dot)ro>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: How compare current_setting(..) ?
Date: 2007-02-22 13:47:14
Message-ID: erk6sq$21jv$1@news.hub.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Sorry, it was my fault. The setting was '%t' and a space. I fixed it and it
works well.
Many thanks !

"Michael Fuhr" <mike(at)fuhr(dot)org> wrote in message
news:20070222110353(dot)GA7197(at)winnie(dot)fuhr(dot)org(dot)(dot)(dot)
> On Thu, Feb 22, 2007 at 12:25:42PM +0200, Sabin Coanda wrote:
>> I'd like to check that my log_line_prefix is set to '%t'.
>> I suppose I can check it with the following statement:
>> SELECT current_setting( 'log_line_prefix' )
>> WHERE current_setting( 'log_line_prefix' ) != '%t'
>>
>> But it returns every time a row, with '%t', even when log_line_prefix is
>> set
>> to '%t'.
>> What's wrong ?
>
> Works here. Might log_line_prefix have leading or trailing spaces?
> What does the following return?
>
> SELECT '<' || current_setting('log_line_prefix') || '>',
> length(current_setting('log_line_prefix'));
>
> --
> Michael Fuhr
>
> ---------------------------(end of broadcast)---------------------------
> TIP 1: if posting/reading through Usenet, please send an appropriate
> subscribe-nomail command to majordomo(at)postgresql(dot)org so that your
> message can get through to the mailing list cleanly
>
>

In response to

Browse pgsql-sql by date

  From Date Subject
Next Message Tom Lane 2007-02-22 15:43:33 Re: pg_dump fails (timestamp out of range)
Previous Message A. Kretschmer 2007-02-22 13:34:33 Re: how to generate a list of distinct scalar values from a column which type is array