strange bug in plperl

Поиск
Список
Период
Сортировка
Can anyone suggest why I might be seeing this effect (each notice comes 
out once per row plus once per function call)

thanks

andrew

andrew=# create function tstset() returns setof tst language plperl as $$
andrew$# elog(NOTICE,"tstset called");
andrew$# return [{i=>1,v=>"one"},{i=>2,v=>"two"}];
andrew$# $$;
CREATE FUNCTION
andrew=# select * from tstset();
NOTICE:  tstset called
NOTICE:  tstset called
NOTICE:  tstset calledi |  v 
---+-----1 | one2 | two
(2 rows)



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

Предыдущее
От: "John Hansen"
Дата:
Сообщение: Re: Relay Access Denied
Следующее
От: Andrew Dunstan
Дата:
Сообщение: Re: Bug in PL/Perl CVS head w/spi patch