Slightly inconsistent behaviour in regproc? - Mailing list pgsql-hackers

From Christopher Kings-Lynne
Subject Slightly inconsistent behaviour in regproc?
Date
Msg-id 3F9DE705.1000606@familyhealth.com.au
Whole thread Raw
Responses Re: Slightly inconsistent behaviour in regproc?  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-hackers
When you do this query:

SET SEARCH_PATH TO pg_catalog;

SELECT castsource::pg_catalog.regtype AS castsource, 
casttarget::pg_catalog.regtype AS casttarget, 
castfunc::pg_catalog.regprocedure AS castfunc, 
castfunc::pg_catalog.regproc AS castfunc2 FROM pg_catalog.pg_cast ORDER 
BY 1, 2;

Only regproc adds the unnecessary pg_catalog. qualification, why is that?

Results:

-[ RECORD 1 ]----------------------------------------
castsource | "char"
casttarget | text
castfunc   | text("char")
castfunc2  | pg_catalog.text
-[ RECORD 2 ]----------------------------------------
castsource | "char"
casttarget | character
castfunc   | bpchar("char")
castfunc2  | pg_catalog.bpchar
-[ RECORD 3 ]----------------------------------------
castsource | name
casttarget | text
castfunc   | text(name)
castfunc2  | pg_catalog.text
-[ RECORD 4 ]----------------------------------------
castsource | name
casttarget | character
castfunc   | bpchar(name)
castfunc2  | pg_catalog.bpchar
-[ RECORD 5 ]----------------------------------------
castsource | name
casttarget | character varying
castfunc   | "varchar"(name)
castfunc2  | pg_catalog."varchar"
-[ RECORD 6 ]----------------------------------------
castsource | bigint
casttarget | smallint
castfunc   | int2(bigint)
castfunc2  | pg_catalog.int2
-[ RECORD 7 ]----------------------------------------
castsource | bigint
casttarget | integer
castfunc   | int4(bigint)
castfunc2  | pg_catalog.int4
...




pgsql-hackers by date:

Previous
From: "Joshua D. Drake"
Date:
Subject: Re: Open items
Next
From: Bruce Momjian
Date:
Subject: Re: Open items