Re: Shouldn;t this trigger be called? - Mailing list pgsql-general

From stan
Subject Re: Shouldn;t this trigger be called?
Date
Msg-id 20190915153756.GA28027@panix.com
Whole thread Raw
In response to Shouldn;t this trigger be called?  (stan <stanb@panix.com>)
List pgsql-general
On Sun, Sep 15, 2019 at 11:33:09AM -0400, stan wrote:
> I have defined this function:
> 
> CREATE FUNCTION fix_customer_types_case()
> 
> and this trigger:
> 
> CREATE TRIGGER fix_customer_types_case_trig BEFORE INSERT OR UPDATE ON customer
> FOR EACH ROW EXECUTE FUNCTION fix_customer_types_case();
> 
> and I put a RAISE NOTICE so I cna tell if the function is called. Yet when I
> do a :
> 
> \copy to bring data into this table, I do not see the notice.
> 
> Shouldn't this fucntion be aclled for that?

Sorry, found my mistake.

-- 
"They that would give up essential liberty for temporary safety deserve
neither liberty nor safety."
                        -- Benjamin Franklin



pgsql-general by date:

Previous
From: stan
Date:
Subject: Shouldn;t this trigger be called?
Next
From: Adrian Klaver
Date:
Subject: Re: Shouldn;t this trigger be called?