Re: Null function parameters - Mailing list pgsql-sql

From Tom Lane
Subject Re: Null function parameters
Date
Msg-id 9387.966964520@sss.pgh.pa.us
Whole thread Raw
In response to Null function parameters  ("Graham Vickrage" <graham@digitalplanit.com>)
List pgsql-sql
"Graham Vickrage" <graham@digitalplanit.com> writes:
> However my understanding was that if the default value is SQL NULL then any
> values passed into the function that are null would be treated as 'NULL'.

Not sure what you think you meant by that, but a null is a null.  If you
declared the table column as NOT NULL then Postgres is doing exactly
what it should.  You may wish to code the insert along the lines of
   INSERT INTO table VALUES (..., COALESCE($1, suitable-default), ...)

COALESCE is a handy notation for "value1 unless it's NULL, in which case
value2".
        regards, tom lane


pgsql-sql by date:

Previous
From: "Brian C. Doyle"
Date:
Subject: Re: Time Help
Next
From: Jan Wieck
Date:
Subject: Re: Continuous inserts...