[HACKERS] unqualified function calls in system_views.sql

2004-02-18 Thread Christopher Kings-Lynne
Do these need to be fixed in backend/catalog/system_views.sql to have pg_catalog. before everything? eg. CREATE VIEW pg_rules AS SELECT N.nspname AS schemaname, C.relname AS tablename, R.rulename AS rulename, pg_get_ruledef(R.oid) AS definition FROM

Re: [HACKERS] unqualified function calls in system_views.sql

2004-02-18 Thread Tom Lane
Christopher Kings-Lynne [EMAIL PROTECTED] writes: Do these need to be fixed in backend/catalog/system_views.sql to have pg_catalog. before everything? No, because the references are all resolved when the views are created. We do have to be cautious about qualifying references that appear