0

次の関数 update_sessioninfo() は、変更された列のみを更新する必要があります。New.* 列は、実行後にいくつかの誤った値に更新されています。

update freeradius.radacct set acctsessiontime=25 where radacctid=3;

関数

CREATE OR REPLACE FUNCTION update_sessioninfo() RETURNS trigger AS $radacct_update$
BEGIN
    -- update the updated records

       update freeradius.day_guiding_usage set  acctstoptime=New.acctstoptime,acctsessiontime=New.acctsessiontime,connectinfo_start=New.connectinfo_start,connectinfo_stop=New.connectinfo_stop,acctinputoctets=New.acctinputoctets,acctoutputoctets=New.acctoutputoctets,acctterminatecause=New.acctterminatecause where acctsessionid=Old.acctsessionid;

 RETURN NULL;
END;
$radacct_update$ LANGUAGE plpgsql;

トリガーは以下

CREATE  TRIGGER radacct_update AFTER UPDATE ON freeradius.radacct
FOR EACH ROW 
WHEN (OLD.* IS DISTINCT FROM NEW.*)
EXECUTE procedure update_sessioninfo();
4

1 に答える 1

1

WHEN (OLD.* IS DISTINCT FROM NEW.*)何かが変更されたことを意味します => 古い行は新しい行とは異なりますが、更新が発生すると、テーブルのすべての列が更新されます。

ここで例とドキュメントを参照してください: http://www.postgresql.org/docs/9.2/static/sql-createtrigger.html

于 2013-08-20T14:11:07.017 に答える