Re: Issue with insert - Mailing list pgsql-sql

From Tom Lane
Subject Re: Issue with insert
Date
Msg-id 614.1267304300@sss.pgh.pa.us
Whole thread Raw
In response to Re: Issue with insert  (Michael Gould <mgould@intermodalsoftwaresolutions.net>)
Responses Re: Issue with insert  (Michael Gould <mgould@intermodalsoftwaresolutions.net>)
List pgsql-sql
Michael Gould <mgould@intermodalsoftwaresolutions.net> writes:
> Here is the table DDL,

Can't really test this since you didn't supply the source code for
those triggers:

> CREATE TRIGGER "insertcitystateinfo" BEFORE INSERT OR UPDATE
> ON "iss"."citystateinfo" FOR EACH ROW
> EXECUTE PROCEDURE "iss"."insertcitystateinfofunc"();

> CREATE TRIGGER "update_timestamp_citystateinfo" BEFORE UPDATE
> ON "iss"."citystateinfo" FOR EACH ROW
> EXECUTE PROCEDURE "iss"."timestampfunc"();

Personally I'm suspicious that the BEFORE INSERT trigger is changing the
data.
        regards, tom lane


pgsql-sql by date:

Previous
From: Michael Gould
Date:
Subject: Re: Issue with insert
Next
From: Michael Gould
Date:
Subject: Re: Issue with insert