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


Er, I couldn't see the part of your example where that happened?

Basically, my question is why ::regproc alone always addes the catalogue qualification in this case?


Rows below correspond to:

::regtype
::regtype
::regprocedure
::regproc

-[ RECORD 1 ]----------------------------------------
castsource | "char"
casttarget | text
castfunc   | text("char")
castfunc2  | pg_catalog.text

eg. Why is it not:

-[ RECORD 1 ]----------------------------------------
castsource | "char"
casttarget | text
castfunc   | text("char")
castfunc2  | text

Or even:

-[ RECORD 1 ]----------------------------------------
castsource | pg_catalog."char"
casttarget | pg_catalog.text
castfunc   | pg_catalog.text("char")
castfunc2  | pg_catalog.text

Chris



---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
     subscribe-nomail command to [EMAIL PROTECTED] so that your
     message can get through to the mailing list cleanly

Reply via email to