Re: Major upgrade advice - Mailing list pgsql-admin

From Tom Lane
Subject Re: Major upgrade advice
Date
Msg-id 16600.1213971849@sss.pgh.pa.us
Whole thread Raw
In response to Re: Major upgrade advice  (Jan-Ivar Mellingen <jan-ivar.mellingen@alreg.no>)
List pgsql-admin
Jan-Ivar Mellingen <jan-ivar.mellingen@alreg.no> writes:
> I got curious and did a few tests on a 8.3.3 database on my laptop.
> The 3 different queries all worked, but one took twice as long.

> SELECT * FROM alarmlogg WHERE alarm_tid >= CAST('2007-05-20' as
> timestamp) AND alarm_tid < CAST('2008-05-21' as timestamp);
> --> 301 seconds.

Unsurprising: a comparison between a timestamp with timezone and
one without involves a timezone conversion, so it's gonna be slow.

It's a bit annoying that the system doesn't have the intelligence
to convert the constants to timestamptz just once; but I think
doing that would require introducing an implicit cast from
timestamp to timestamptz, which might cause surprising behaviors
elsewhere.

            regards, tom lane

pgsql-admin by date:

Previous
From: Roberto Garcia
Date:
Subject: Re: Major upgrade advice
Next
From: Geoffrey
Date:
Subject: Re: where would I find the files I need?