I am currently running postgres 8.4.4 and I have the need to override calls to functions that reside in the public schema of my database. For instance in pg_catalog there exists a function

upper(text)

I have a function placed within the public schema that overrides

upper(text)

My question comes down to overriding the call to public.upper(text). That is to say I have to execute the function call like so:

select public.upper(text);

Whereas I want to be able to call public.upper(text) in this manner:

select upper(text);

How does one go about doing this?

link|improve this question

I think it's a poor decision to name identically to native functions – OMG Ponies Sep 16 '10 at 18:19
I agree as well Ponies, its something I need to prove a potential issue with default user privileges. – Woot4Moo Sep 16 '10 at 18:22
feedback

1 Answer

up vote 1 down vote accepted

You can set schema search path and place pg_catalog at the end of your search path.
See 5.7.3. The Schema Search Path and 5.7.5. The System Catalog Schema in Postgres manual.

link|improve this answer
thanks I only initially saw 5.7.3 in my searches. – Woot4Moo Sep 16 '10 at 18:35
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.