Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
CREATE OR REPLACE FUNCTION hdb_catalog.check_violation(msg text) RETURNS bool AS
$$
BEGIN
RAISE check_violation USING message=msg;
END;
$$ LANGUAGE plpgsql;