syntax issue with custom aggregator

Поиск
Список
Период
Сортировка
От Lucas F.
Тема syntax issue with custom aggregator
Дата
Msg-id 016001c5316f$49be8240$a001a8c0@sf.vagabond.com
обсуждение исходный текст
Ответы Re: syntax issue with custom aggregator  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-general
When I run a query using a custom aggregator I wrote to find the average of
only non-negative values:

CREATE AGGREGATE "property"."pos_avg" ( BASETYPE = "int2",
SFUNC = "property"."ag_pos_avg_accum", STYPE = "_int4",
FINALFUNC = "property"."ag_pos_avg_final", INITCOND = "'{0,0}'");

CREATE OR REPLACE FUNCTION "property"."ag_pos_avg_accum" (p_state integer
[], p_input smallint) RETURNS integer [] AS
$body$
/* state transition function for the pos_avg custom aggregate*/

declare

state_copy integer[];

begin

state_copy := p_state;

if (p_state is null) then
   state_copy := '{0,0}';
   state_copy[0] := 0;
   state_copy[1] := 0;
end if;

if (p_input >= 0 and not p_input is null) then
   /* number of records */
   state_copy[0] := state_copy[0] + 1;
   /* running total */
   state_copy[1] := state_copy[1] + p_input;
end if;

return state_copy;

end;
$body$
LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;

CREATE OR REPLACE FUNCTION "property"."ag_pos_avg_final" (p_state integer
[]) RETURNS smallint AS
$body$
/* final function for pos_avg custom aggregator */

declare

ret smallint;

begin

if (p_state[0] != 0) then
   ret := p_state[1] / p_state[0];
else
   ret := null;
end if;

return ret;

end;
$body$
LANGUAGE 'plpgsql' VOLATILE CALLED ON NULL INPUT SECURITY INVOKER;

I get the error:

ERROR:  array value must start with "{" or dimension information

I'm pretty new to postgresql so it's probably something obvious, but I'm at
a loss as to what it is...

Thank you...


В списке pgsql-general по дате отправления:

Предыдущее
От: "Jim Buttafuoco"
Дата:
Сообщение: Re: Stuck with references
Следующее
От: Tom Lane
Дата:
Сообщение: Re: syntax issue with custom aggregator