Re: Problems with timezone

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: JotaComm <jota(dot)comm(at)gmail(dot)com>, PostgreSQL General <pgsql-general(at)postgresql(dot)org>
Subject: Re: Problems with timezone
Date: 2015-07-27 19:41:41
Message-ID: 55B68975.5090600@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 07/27/2015 12:36 PM, JotaComm wrote:
>
> ​Hello,
>
> I have the following inconsistency in my environment:
>
> postgres(at)postgres =# SELECT current_timestamp;
> now
> -------------------------------
> *2015-07-27 16:26:40.001694-03*
> (1 row)
>
> postgres(at)postgres =# SHOW timezone;
> TimeZone
> -------------
> Brazil/East
> (1 row)
>
> postgres(at)postgres =# SELECT blah;
> ERROR: column "blah" does not exist
>
> In my log file:
>
> [*2015-07-27 19:27:10.944 GMT*] 3397 <postgres postgres [local] 42703>
> ERROR: column "blah" does not exist at character 8
> [*2015-07-27 19:27:10.944 GMT*] 3397 <postgres postgres [local] 42703>
> STATEMENT: SELECT blah;​
>
> My PostgreSQL version is: 9.2.4
>
> cat /etc/issue
> CentOS release 6.3 (Final)
> Kernel \r on an \m
>
> Could you help me?

http://www.postgresql.org/docs/9.2/interactive/runtime-config-logging.html

log_timezone (string)

Sets the time zone used for timestamps written in the server log.
Unlike TimeZone, this value is cluster-wide, so that all sessions will
report timestamps consistently. The built-in default is GMT, but that is
typically overridden in postgresql.conf; initdb will install a setting
there corresponding to its system environment. See Section 8.5.3 for
more information. This parameter can only be set in the postgresql.conf
file or on the server command line.

>
> Thanks a lot.
>
> Best regards
>
>
> --
> JotaComm
> http://jotacomm.wordpress.com

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Alex Magnum 2015-07-27 19:53:03 Sorting CSV string and removing Duplicates
Previous Message JotaComm 2015-07-27 19:36:36 Problems with timezone