Yon and I were just debugging a PG bug where we were trying to set a timestamptz column by saying something like
... to_date('2003-07-18 04:00 PM', 'YYYY-MM-DD HH24:MI AM') ...
but the time didn't get set.
Then we realized that in PG, you have to say to_timestamp, not to_date, if you actually care about the time.
As opposed to Oracle, which uses to_date for both.
And we figured there are probably hundreds of bugs related to this in OpenACS.
So we figured we'd mention it :)
/Lars