When trigger returns NULL, row is not inserted, but result of the operation is still reported as successful (INSERT 0 0). And in my opinion this is not logical, as one would probably want to handle this properly. I wonder if there's a way to throw an actual error from the trigger?

有帮助吗?

解决方案

If the trigger function is written in PL/pgSQL, then you can raise errors with RAISE:

CREATE FUNCTION my_trigger() RETURNS trigger
LANGUAGE plpgsql
AS $$
BEGIN
    IF random() < 0.01 THEN
        RAISE EXCEPTION 'internal error';
    END IF;
    RETURN NEW;
END;
$$;
许可以下: CC-BY-SA归因
不隶属于 dba.stackexchange
scroll top