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 w
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 (pg_re