[GENERAL] What order of steps of the postgres when you change information in the table?

2009-10-30 Thread Denis Feklushkin
Problem: It is necessary to synchronize the "users" table with an external storage of passwords (krb5) I made a trigger: CREATE TRIGGER "10_krb5" AFTER INSERT OR UPDATE OR DELETE ON users FOR EACH ROW EXECUTE PROCEDURE user2krb5_python(); Everything works, except that when you d

Re: [GENERAL] What order of steps of the postgres when you change information in the table?

2009-10-31 Thread Denis Feklushkin
On Fri, 30 Oct 2009 23:29:49 -0600 Scott Marlowe wrote: > 2009/10/30 Denis Feklushkin : > > > > Problem: > > It is necessary to synchronize the "users" table with an > > external storage of passwords (krb5) > > > > I made a trigger: > > >