Re: [COMMITTERS] pgsql: Don't use OidIsValid to check the return value of - Mailing list pgsql-hackers

From Heikki Linnakangas
Subject Re: [COMMITTERS] pgsql: Don't use OidIsValid to check the return value of
Date
Msg-id 494D1932.3000207@enterprisedb.com
Whole thread Raw
In response to Re: [COMMITTERS] pgsql: Don't use OidIsValid to check the return value of  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
Tom Lane wrote:
> Definitely a necessary fix, but you missed what I think is actually
> causing the crashes:
> 
>           if (PointerIsValid(DatumGetPointer(datum)))
> !             repl_val[Anum_pg_foreign_data_wrapper_fdwoptions - 1] = ObjectIdGetDatum(datum);
> 
> should be
> 
>           if (PointerIsValid(DatumGetPointer(datum)))
> !             repl_val[Anum_pg_foreign_data_wrapper_fdwoptions - 1] = datum;
> 
> ObjectIdGetDatum probably is zeroing the high-order half of the pointer
> datum.

Doh, how could I miss that, on the very next line :-)

> I committed this along with some other cosmetic fixes.

Thanks.

--   Heikki Linnakangas  EnterpriseDB   http://www.enterprisedb.com


pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: [COMMITTERS] pgsql: SQL/MED catalog manipulation facilities This doesn't do any
Next
From: Tom Lane
Date:
Subject: Re: [COMMITTERS] pgsql: Append major version number and for libraries soname major