Skip to content

Instantly share code, notes, and snippets.

@mostlyobvious
Created July 25, 2026 22:46
Show Gist options
  • Select an option

  • Save mostlyobvious/968aa0a876ebfe29990c53a2f807787a to your computer and use it in GitHub Desktop.

Select an option

Save mostlyobvious/968aa0a876ebfe29990c53a2f807787a to your computer and use it in GitHub Desktop.
CREATE OR REPLACE FUNCTION kakadudu() RETURNS uuid AS $$
DECLARE
evid uuid := gen_random_uuid();
BEGIN
INSERT INTO log (evid) VALUES (evid);
LISTEN kakadudu;
PERFORM pg_notify('kakadudu', evid::text);
RETURN evid;
END;
$$ LANGUAGE plpgsql;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment