Hi,all
the version is 7.3 .I post it to windows2000 and install the pl/pgsql language . I create a function like :
create function a() returns int as '
begin
return 1;
end;
'language 'pl/pgsql';
Everything is ok till now.but when I executed it :select a(), the postmaster crashed and restarted.E
I port postgres7.3 to windows 2k and install the pl\pgsql language . After I create a very simple function a like :
create function a() returns int as 'begin return 1;end;' language plpgsql;
the creation is successful but when I execute the function :
select a();
The postmaster crashed and restar