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] pgAdmin III commit: Fix support for triggers with inline code on PPAS

2014-09-19 Thread Dave Page
Fix support for triggers with inline code on PPAS Branch -- master Details --- http://git.postgresql.org/gitweb?p=pgadmin3.git;a=commitdiff;h=97e21c673d762c583b06dd4194952a999b23983e Author: Sanket Mehta Modified Files -- CHANGELOG|2 ++ pgadmin/schema

[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