Thanks !
That will be nice to have !
Do you think the new release of pgAdmin will be ready and packaged when
postgres 9.1 will be released ?
Best Regards
Dan
2011/3/24 Guillaume Lelarge
> Le 13/03/2011 10:54, Guillaume Lelarge a écrit :
> > Le 13/03/2011 10:35, Dan S a écrit
ecute procedure def_constr_tst_chk_balance();
-- should succeed on commit
begin transaction;
insert into tst values(1,100);
insert into tst values(2,-100);
commit transaction;
-- should fail on commit
begin transaction;
insert into tst values(3,100);
insert into tst values(4,-110);
commit transaction;
Best Regards
Dan S