Re: [pgadmin-hackers] Fixed PPAS trigger when condition

2014-09-19 Thread Dave Page
Thanks - patch applied and pushed. On Fri, Sep 19, 2014 at 7:41 AM, Sanket Mehta wrote: > Hi Dave > > There is one issue with PPAS while trigger creation as mentioned below: > > create table a (a int not null primary key, b int); > create table b (a int not null primary key, b int); > --make trig

[pgadmin-hackers] Fixed PPAS trigger when condition

2014-09-19 Thread Sanket Mehta
Hi Dave There is one issue with PPAS while trigger creation as mentioned below: create table a (a int not null primary key, b int); create table b (a int not null primary key, b int); --make trigger with when condition create trigger tr_a after insert on a for each row when (:new.a > 0) begin ins