Re: pg_notify contention
uot;: ($x.prefix | .[7:]), > "xid": $x.xid, > "txn_commit": $x.timestamp, > "transactional": $x.transactional > }' > > Note, this is not a 100% replacement. The semantics are slightly > different. You also need a rep
pg_notify contention
Hi, I am measuring a very simple case of pg_notify in an after update trigger. The trigger is the following: CREATE OR REPLACE FUNCTION audit_event() RETURNS TRIGGER AS $$ BEGIN PERFORM pg_notify('user', 'hello world'); RETURN NULL; END; $$ LANGUAGE plpgsql; and configured on the