我在交易中创建记录。
begin;
update parent_records where id=5 set closed = now();
insert into child_records ...;
commit;
我希望在父记录为closed
后阻止插入新的child_records。似乎在parent_records上设置规则以在关闭时炸毁update
操作将解决问题,因为事务将失败。
我可以使用where closed is null
进行更新,然后检查应用程序代码是否有任何行更新和回滚,但我宁愿约束在数据库本身。
如果满足条件(closed
列不为空),我如何标记父行不可变(更新失败并出错)?
答案 0 :(得分:2)
使用触发器,例如:
create function before_update_on_parent_records()
returns trigger language plpgsql as $$
begin
if old.closed is not null then
raise exception 'cannot update because the row is closed';
end if;
return new;
end $$;
create trigger before_update_on_parent_records
before update on parent_records
for each row execute procedure before_update_on_parent_records();