Postgres 中的 AFTER 触发器会阻止插入/更新吗?
如果我在 PostgreSQL 中设置一个 AFTER 触发器在插入/更新后触发,调用软件是否必须等待触发器完成才能将控制权返回给调用软件?或者触发器会在幕后自行运行吗?
If I set up an AFTER trigger in PostgreSQL to fire after an insert/update, will the calling software have to wait for the trigger to finish before returning control to the calling software? Or will the trigger run on its own behind the scenes?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,因为它是在同一事务中执行的。如果触发器失败,插入/更新也会失败。只需执行一个将失败的查询(选择一个不存在的表)的测试,您就可以看到事情如何工作以及您的应用程序将如何运行。
Yes, because it's executed within the same transaction. If the trigger fails, the insert/update will also fail. Just do a test executing a query that will fail (SELECT a table that does not exist) and you can see how things work and how your application will behave.