Re: Unixtime (epoch) into timestamp?

From: Ericson Smith <eric(at)did-it(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Unixtime (epoch) into timestamp?
Date: 2002-09-26 15:17:07
Message-ID: 1033053428.18541.11.camel@localhost.localdomain
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Thanks Tom,

Just added this handy little function to our catalog based on that
answer:

CREATE FUNCTION "fn_date"(int4) RETURNS timestamp with time zone AS
'DECLARE
my_epoch ALIAS FOR $1;
my_ret timestamp;

BEGIN
SELECT INTO my_ret "timestamp"(my_epoch);
RETURN my_ret;
END;' LANGUAGE 'plpgsql';

Thanks a bunch
- Ericson
eric(at)did-it(dot)com

On Thu, 2002-09-26 at 11:07, Tom Lane wrote:
> Ericson Smith <eric(at)did-it(dot)com> writes:
> > We mostly use unix times in our system because of the kind of
> > applications that we have. Now we need to convert that into a timestamp.
>
> The officially supported conversion methods are like this:
>
> test72=# select extract(epoch from now());
> date_part
> ------------------
> 1033052570.73262
> (1 row)
>
> test72=# select 'epoch'::timestamptz + interval '1033052570.73262 seconds';
> ?column?
> ------------------------------
> 2002-09-26 11:02:50.73262-04
> (1 row)
>
> But I tend to cheat on the latter. You can cast from int4 to abstime,
> and the latter is really a time_t, so:
>
> test72=# select 1033052570::int4::abstime;
> abstime
> ------------------------
> 2002-09-26 11:02:50-04
> (1 row)
>
> And of course you can cast from abstime to timestamp. This will
> probably break in 2038 ...
>
> regards, tom lane

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Shridhar Daithankar 2002-09-26 15:29:01 Re: Performance while loading data and indexing
Previous Message Justin Clift 2002-09-26 15:12:49 Re: Performance while loading data and indexing