尝试创建此触发器失败,并显示ERROR: syntax error at or near "function"
create trigger set_foo_bar_value
before update on foo_table
for each row execute function set_foo_bar();
匹配
答案 0 :(得分:2)
该文档适用于postgres> = 11,我使用的是postgres 10。
我需要将function
替换为procedure