Re: Question about STRICT - Mailing list pgsql-hackers

From Gevik Babakhani
Subject Re: Question about STRICT
Date
Msg-id 4A264AC4.2040902@xs4all.nl
Whole thread Raw
In response to Re: Question about STRICT  (Greg Stark <stark@enterprisedb.com>)
Responses Re: Question about STRICT  (Greg Stark <stark@enterprisedb.com>)
List pgsql-hackers
>> Shouldn't we raise an error when calling a function with NULL arguments
>> values if the function is created as STRICT?
> 
> No, what they do is return NULL automatically. The function doesn't
> have to check for NULL arguments itself.

The "RETURNS NULL ON NULL INPUT" is logical and does the above 
accordingly. But when a function is STRICT you kind of expect to have an 
notification, perhaps an error if a value for an argument is NULL.

STRICT is sort of puzzling when you want to make sure a function is only 
called if none of the arguments are NULL.

With STRICT, the function is "called" anyway and returns NULL, witch 
results the application code to happily execute further without noticing 
that calling the function did not do anything.

I am thinking about the following situation:

create table table1
(    col1 int,    col2 varchar
);

create or replace function insert_test(int,varchar) returns void as
$$    insert into table1 (col1,col2) values ($1,$2);
$$
language sql strict;

select * from insert_test(null,'a');

select * from table1;

-- 
Regards,
Gevik


pgsql-hackers by date:

Previous
From: "Markus Wanner"
Date:
Subject: Re: Managing multiple branches in git
Next
From: Greg Stark
Date:
Subject: Re: Question about STRICT