BUG #17371: Immutable INTERVAL to TEXT cast can cause incorrect query results

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: marcus(at)cockroachlabs(dot)com
Subject: BUG #17371: Immutable INTERVAL to TEXT cast can cause incorrect query results
Date: 2022-01-19 21:06:41
Message-ID: 17371-8f57e6e9ca5e35bf@postgresql.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

The following bug has been logged on the website:

Bug reference: 17371
Logged by: Marcus Gartner
Email address: marcus(at)cockroachlabs(dot)com
PostgreSQL version: 14.0
Operating system: macOS Big Sur 11.6
Description:

I believe casts from INTERVAL to TEXT (and other string-like types such as
CHAR, NAME, VARCHAR, and "char") should have a volatility of stable, not
immutable, because the results of these casts depend on IntervalStyle. As an
immutable cast, INTERVAL to TEXT casts are allowed in computed columns and
expression indexes, which can cause incorrect query results. For example:

SET IntervalStyle = 'postgres';

CREATE TABLE t (i INTERVAL);

INSERT INTO t SELECT i * '1 day'::INTERVAL FROM generate_series(1, 10000)
s(i);

CREATE INDEX i ON t((i::TEXT), i);

SET IntervalStyle = 'sql_standard';

-- Returns false.
SELECT i::TEXT = '5 days' FROM t WHERE i::TEXT = '5 days';

ANALYZE t;

-- Same query as above, now performing an index-only scan, returns true.
SELECT i::TEXT = '5 days' FROM t WHERE i::TEXT = '5 days';

DROP INDEX i;

-- Same query as above returns zero rows.
SELECT i::TEXT = '5 days' FROM t WHERE i::TEXT = '5 days';

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2022-01-19 21:42:44 Re: BUG #17371: Immutable INTERVAL to TEXT cast can cause incorrect query results
Previous Message Julien Rouhaud 2022-01-19 09:46:07 Re: BUG #17370: shmem lost on segfault