Re: Re: time + date_part oddness? - Mailing list pgsql-hackers

From Tom Lane
Subject Re: Re: time + date_part oddness?
Date
Msg-id 6970.978678969@sss.pgh.pa.us
Whole thread Raw
In response to Re: time + date_part oddness?  (Thomas Lockhart <lockhart@fourpalms.org>)
List pgsql-hackers
Thomas Lockhart <lockhart@fourpalms.org> writes:
> I'd assume that it should be using fractional seconds only, just like
> timestamp_part() does. Any reason not to change it for 7.1?

Agreed.

> btw, what should 'microseconds' return? It suffers from the problems
> mentioned already, plus leaves the "milliseconds" part in the result.
> That should probably only return the pieces which are less than a
> millisecond...

Hm.  I'd venture to disagree.  People are used to breaking down time
into hours-minutes-seconds, but I never heard of anyone expressing
a measurement as so many milliseconds plus so many microseconds.

I'd vote for making 'milliseconds' produce 'fractional second times 10^3'
and 'microseconds' produce 'fractional second times 10^6'.  You wouldn't
use both together, just whichever seemed appropriate for the precision
of your data.
        regards, tom lane

PS: "fourpalms.org" ?


pgsql-hackers by date:

Previous
From: Thomas Lockhart
Date:
Subject: Re: Missing ColLabel tokens
Next
From: Thomas Lockhart
Date:
Subject: Re: Re: time + date_part oddness?