Re: BUG #18853: integer may overflow in array_user_functions - Mailing list pgsql-bugs

From Tom Lane
Subject Re: BUG #18853: integer may overflow in array_user_functions
Date
Msg-id 17181.1742306285@sss.pgh.pa.us
Whole thread Raw
In response to BUG #18853: integer may overflow in array_user_functions  (PG Bug reporting form <noreply@postgresql.org>)
List pgsql-bugs
PG Bug reporting form <noreply@postgresql.org> writes:
> I noticed that in the array_userfunc.c file, there are many calculations
> involving int32 without overflow checks. 

> For example: 
> int reqsize = state1->nbytes + state2->nbytes; 

This particular example is expected not to overflow because Datum
sizes are restricted to be < 1GB.  There may indeed be live overflow
hazards in array_userfunc.c (or elsewhere), but you will need a
considerably more sophisticated analysis to demonstrate it.

            regards, tom lane



pgsql-bugs by date:

Previous
From: PG Bug reporting form
Date:
Subject: BUG #18854: PostgreSQL chooses a suboptimal execution plan when using a specific WHERE filter
Next
From: Andrei Lepikhov
Date:
Subject: Re: BUG #18854: PostgreSQL chooses a suboptimal execution plan when using a specific WHERE filter