PostgreSQL - Advanced PL/pgSQL
Why does this function declaration cause an error?
CREATE FUNCTION test_func(VARIADIC nums int) RETURNS int AS $$ SELECT sum(nums); $$ LANGUAGE sql;
