I use this function in a trigger:
CREATE OR REPLACE FUNCTION xx() RETURNS trigger AS $xx$
BEGIN
INSERT INTO my_log (x, y, z) VALUES (NEW.x, NEW.y, current_setting('myvar.user'));
RETURN NULL;
END;
$xx$ LANGUAGE plpgsql;
Now I would like to check if "myvar.user" is a valid integer, and if not, execute another INSERT statement.
How can i do this?
source
share