Re: Postgre 7.3.x Bug with datetime formatting.

Lists: pgsql-bugs
From: "Safwan Hak" <safwan_hak(at)sympatico(dot)ca>
To: <pgsql-bugs(at)postgresql(dot)org>
Subject: Postgre 7.3.x Bug with datetime formatting.
Date: 2004-05-05 18:29:30
Message-ID: 20040505182930.VQUB20511.tomts20-srv.bellnexxia.net@Alexandra
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

Hi,

There is a problem with the to_char function when it formats the timestamp;
in the example below; The HH is different between both calls.

select current_timestamp, to_char(current_timestamp, 'YYYY-MM-DD
HH:MM:SS:US')

returns

timestamptz to_char

--------------------------
--------------------------

2004-05-05 13:25:12.332313 2004-05-05 12:05:12:332313

Regards,

Safwan


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Safwan Hak" <safwan_hak(at)sympatico(dot)ca>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: Postgre 7.3.x Bug with datetime formatting.
Date: 2004-05-07 01:17:21
Message-ID: 26880.1083892641@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

"Safwan Hak" <safwan_hak(at)sympatico(dot)ca> writes:
> select current_timestamp, to_char(current_timestamp, 'YYYY-MM-DD
> HH:MM:SS:US')

> 2004-05-05 13:25:12.332313 2004-05-05 12:05:12:332313

Looks fine to me. I suspect what you are wanting is HH24:MI:SS, not
HH:MM:SS.

regards, tom lane


From: "Safwan Hak" <safwan_hak(at)sympatico(dot)ca>
To: "'Tom Lane'" <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: <pgsql-bugs(at)postgresql(dot)org>
Subject: Re: Postgre 7.3.x Bug with datetime formatting.
Date: 2004-05-07 14:04:05
Message-ID: 20040507140405.ZIUV17358.tomts25-srv.bellnexxia.net@Alexandra
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

I did realize my mistake regarding the time. But the hours is still wrong.
Here is the call as per change. The result still shows a variation.

-----
select current_timestamp, to_char(current_timestamp, 'YYYY-MM-DD
HH24:MI:SS')

timestamptz to_char
-------------------------- -------------------
2004-05-07 08:59:24.713109 2004-05-07 07:59:24
-----

I'm new to Postgre; is it possible to set the timezone or clock of Postgre
different from local machine; I didn't setup the machines; but if you tell
me how to get you the settings for postgre, as well as the local or timezone
settings for the machine, we might be able to figure out the discrepancy.
As you see in the result above, the hours is still incorrect.

Regards,
Safwan

-----Original Message-----
From: Tom Lane [mailto:tgl(at)sss(dot)pgh(dot)pa(dot)us]
Sent: Thursday, May 06, 2004 8:17 PM
To: Safwan Hak
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: [BUGS] Postgre 7.3.x Bug with datetime formatting.

"Safwan Hak" <safwan_hak(at)sympatico(dot)ca> writes:
> select current_timestamp, to_char(current_timestamp, 'YYYY-MM-DD
> HH:MM:SS:US')

> 2004-05-05 13:25:12.332313 2004-05-05 12:05:12:332313

Looks fine to me. I suspect what you are wanting is HH24:MI:SS, not
HH:MM:SS.

regards, tom lane


From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Safwan Hak" <safwan_hak(at)sympatico(dot)ca>
Cc: pgsql-bugs(at)postgresql(dot)org
Subject: Re: Postgre 7.3.x Bug with datetime formatting.
Date: 2004-05-07 15:30:54
Message-ID: 5250.1083943854@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Lists: pgsql-bugs

"Safwan Hak" <safwan_hak(at)sympatico(dot)ca> writes:
> select current_timestamp, to_char(current_timestamp, 'YYYY-MM-DD
> HH24:MI:SS')

> timestamptz to_char
> -------------------------- -------------------
> 2004-05-07 08:59:24.713109 2004-05-07 07:59:24

Hm, that is odd. What timezone are you running under? (The output of
SHOW TIMEZONE would be interesting.) Also, exactly which Postgres
version is this, and on what platform?

regards, tom lane