David Fetter <da...@fetter.org> wrote:

> > It's still arguable that we should add dependencies from column
> > triggers to referenced columns.
> 
> +1 for adding the dependencies.

But how? First, I tried to use existing dependency mechanism:

    ObjectAddress referenced;
    referenced.classId = AttributeRelationId;
    referenced.objectId = {relid};
    referenced.objectSubId = {attnum};
    recordDependencyOn(&myself, &referenced, DEPENDENCY_NORMAL);

but we don't use ObjectAddress with classId = AttributeRelationId
for now in any places. Does it work? or do I also need to modify
dependency.c to support dependency-to-columns?

Regards,
---
ITAGAKI Takahiro
NTT Open Source Software Center



-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to