create table parent(...);
create table child1(...)
inherits parent;
create table child2(...)
inherits parent;
create table child3(...)
inherits parent;
「親」のトリガーを作成したいのですが、child1、child2、または child3 に挿入すると、このトリガーは自動的に実行される必要があります。しかし、うまくいかなかったようです。子供ごとにトリガーを作成する必要があります。postgresql 9 の解決策はありますか?