Re: float4in_internal

2022-12-21 Thread Andrew Dunstan
On 2022-12-21 We 10:33, Tom Lane wrote: > Andrew Dunstan writes: >> The attached patch factors out the guts of float4in so that the new >> float4in_internal function is callable without going through the fmgr >> call sequence. This will make adjusting the seg module&#

Re: float4in_internal

2022-12-21 Thread Tom Lane
Andrew Dunstan writes: > The attached patch factors out the guts of float4in so that the new > float4in_internal function is callable without going through the fmgr > call sequence. This will make adjusting the seg module's input function > to handle soft errors simpler. A simi

float4in_internal

2022-12-21 Thread Andrew Dunstan
The attached patch factors out the guts of float4in so that the new float4in_internal function is callable without going through the fmgr call sequence. This will make adjusting the seg module's input function to handle soft errors simpler. A similar operation was done for float8in some year