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
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
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