Tatsuo Ishii <[EMAIL PROTECTED]> writes:
> In 7.0.2
>select to_char(sum(n),'999') from t1;
> causes backend dump a core if n is a float/numeric ...data type AND if
> sum(n) returns NULL. This seems due to a bad null pointer handling for
> aruguments of pass-by-reference data types. I think
On Fri, 20 Oct 2000, Tatsuo Ishii wrote:
> In 7.0.2
>
>select to_char(sum(n),'999') from t1;
>
> causes backend dump a core if n is a float/numeric ...data type AND if
> sum(n) returns NULL. This seems due to a bad null pointer handling for
> aruguments of pass-by-reference data types. I