On 7 Apr 2003 at 10:32, Tom Lane wrote:
> "Dan Langille" <dan@langille.org> writes:
> > Yes, as hinted in the message subject. Hmmm, so that's how it's
> > doing the math. I would think '24 hours' would give a different
> > answer to '1 day' since '1 day' is not necessarily == '24 hours'.
>
> Type INTERVAL knows about months and seconds, nothing else. I've
> opined in the past that it should be months, days, and seconds,
> but no one seems excited enough about the issue to do the nontrivial
> work involved ...
I forgot to ask: Does this explain why the problem occurs under 7.2.3
but not 7.3.2? Is the Right Thing To Do(tm) this:
select current_date, current_date-1;
instead of this:
select current_date, (current_date - interval '1 day')::date;
Thanks.
--
Dan Langille : http://www.langille.org/