Excerpts from Dimitri Fontaine's message of jue nov 04 11:06:48 -0300 2010:
> Alvaro Herrera <alvhe...@commandprompt.com> writes:
> > FWIW I think you should use getObjectDescription, as in the attached
> > patch.  (Note the patch is incomplete and does not compile because only
> > one caller to CheckSetNamespace has been fixed).
> 
> I had to re-add the object name to the CheckSetNamespace prototype to
> handle this particular check:
> 
>     /* check for duplicate name (more friendly than unique-index failure) */
>     if (SearchSysCacheExists2(TYPENAMENSP,
>                               CStringGetDatum(name),
>                               ObjectIdGetDatum(nspOid)))

Hmm, this check is wrong anyway, because you're looking in the pg_type
syscache for objects from an arbitrary catalog.  That needs to be fixed
somehow, but perhaps it needs to be handled by the callers, not in this
routine.  Otherwise you're going to need to pass the syscache ID, as
well as Datums identifying the object, and the number of Datums.

-- 
Álvaro Herrera <alvhe...@commandprompt.com>
The PostgreSQL Company - Command Prompt, Inc.
PostgreSQL Replication, Consulting, Custom Development, 24x7 support

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to