无法使用与文档匹配的语法创建触发器

时间:2019-02-11 10:32:31

标签: postgresql

尝试创建此触发器失败,并显示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();

但这与examples here

匹配

1 个答案:

答案 0 :(得分:2)

该文档适用于postgres> = 11,我使用的是postgres 10。

我需要将function替换为procedure