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

--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers

Reply via email to