Search Postgresql Archives

Re: How to send multiple parameters to a pl/pgsql function

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



>
> I know that postgresql array implementation is not right complete and that if just
> one element of array is NULL the basics array function (array_dims, array_upper, etc.) returns NULL.
> I need to send a list of parameters (which could contain NULL values) and evaluate the parameters excluding NULL values
> is this possible?
> any suggestion?

It's not true. Dimensions are stored independent to content.

postgres=# create or replace function foo(int[])
returns int as $$
declare s int = 0; i integer;
begin
  for i in select generate_subscripts($1,1)
  loop
    s := s + coalesce($1[i],0);
  end loop;
  return s;
end;
$$ language plpgsql;
CREATE FUNCTION
postgres=# select foo(array[1,2]);
 foo
─────
   3
(1 row)

postgres=# select foo(array[1,2, null, 3]);
 foo
─────
   6
(1 row)

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


[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Postgresql Jobs]     [Postgresql Admin]     [Postgresql Performance]     [Linux Clusters]     [PHP Home]     [PHP on Windows]     [Kernel Newbies]     [PHP Classes]     [PHP Books]     [PHP Databases]     [Postgresql & PHP]     [Yosemite]
  Powered by Linux