BUG #18200: Undefined behaviour in interval_div

From: PG Bug reporting form <noreply(at)postgresql(dot)org>
To: pgsql-bugs(at)lists(dot)postgresql(dot)org
Cc: exclusion(at)gmail(dot)com
Subject: BUG #18200: Undefined behaviour in interval_div
Date: 2023-11-15 13:00:01
Message-ID: 18200-5ea288c7b2d504b1@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: 18200
Logged by: Alexander Lakhin
Email address: exclusion(at)gmail(dot)com
PostgreSQL version: 16.1
Operating system: Ubuntu 22.04
Description:

The following query:
SELECT interval '12000000 months' / 0.001;

triggers an ubsan-detected error:
timestamp.c:3408:18: runtime error: 1.2e+10 is outside the range of
representable values of type 'int'

Without ubsan the result is:
-178956970 years -8 mons -2562047788:00:54.775808

This bogus value returned on REL_15_STABLE .. master, but on e39f99046~1
I get:
ERROR: interval out of range

without ubsan. Though with the sanitizer I see the same complaint (and it
can be seen on previous branches including REL_12_STABLE):
timestamp.c:3318:18: runtime error: 1.2e+10 is outside the range of
representable values of type 'int'

Responses

Browse pgsql-bugs by date

  From Date Subject
Next Message Tom Lane 2023-11-15 15:15:55 Re: BUG #18097: Immutable expression not allowed in generated at
Previous Message Christoph Berg 2023-11-15 11:46:28 Re: BUG #18199: 'Release' file not available in apt.postgresql.org/pub/repos/apt bionic-pgdg