Re: cast not IMMUTABLE? - Mailing list pgsql-admin

From Tom Lane
Subject Re: cast not IMMUTABLE?
Date
Msg-id 26503.1083890514@sss.pgh.pa.us
Whole thread Raw
In response to cast not IMMUTABLE?  (Gaetano Mendola <mendola@bigfoot.com>)
Responses Re: cast not IMMUTABLE?  (Enrico Weigelt <weigelt@metux.de>)
List pgsql-admin
Gaetano Mendola <mendola@bigfoot.com> writes:
> consider that login_time is a TIMESTAMPTZ with an index on it.
> test# create index idx on user_logs ( (login_time::date) );
> ERROR:  functions in index expression must be marked IMMUTABLE

> why that cast is not considered IMMUTABLE ?

Because it depends on your TimeZone setting.  Observe:

regression=# begin;
BEGIN
regression=# select now(), now()::date;
              now              |    now
-------------------------------+------------
 2004-05-06 20:40:16.038307-04 | 2004-05-06
(1 row)

regression=# set timezone to 'GMT';
SET
regression=# select now(), now()::date;
              now              |    now
-------------------------------+------------
 2004-05-07 00:40:16.038307+00 | 2004-05-07
(1 row)

now() didn't change, but now()::date did.


> How can I define an index for the query (1) ?

What behavior are you really after here?  You could change the column to
be timestamp without time zone (which would have an immutable conversion
to date), but if you want login_time to reflect some sort of absolute
reality then that's likely not the right answer.

Another possibility is to force the date conversion to occur with
respect to a particular time zone.  I was going to suggest something
like
    (login_time at time zone 'GMT')::date
but upon experimenting I see that that isn't considered immutable either
:-(.  Offhand I think this may be an oversight --- I can't see any reason
for the various flavors of AT TIME ZONE (a/k/a timezone() function)
not to be considered immutable.  (Hackers, any comments?)

            regards, tom lane

pgsql-admin by date:

Previous
From: Sam Barnett-Cormack
Date:
Subject: Re: cast not IMMUTABLE?
Next
From: Neil.Thompson@shepway.gov.uk
Date:
Subject: problem trying to su - postgres