Skip to content

Instantly share code, notes, and snippets.

@tpitale
Created February 27, 2016 04:16
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tpitale/b77d51ac2926e20ad6c6 to your computer and use it in GitHub Desktop.
Save tpitale/b77d51ac2926e20ad6c6 to your computer and use it in GitHub Desktop.
CREATE OR REPLACE FUNCTION update_notify() RETURNS trigger AS $$
DECLARE
channel text;
BEGIN
channel := TG_ARGV[0];
NOTIFY channel;
RETURN NEW;
END;
$$ LANGUAGE plpgsql;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment