Re: [GENERAL] plperl crashing backend

2000-09-03 Thread Michael Blakeley
At 8:07 PM -0400 9/3/2000, Tom Lane wrote: >Michael Blakeley <[EMAIL PROTECTED]> writes: >> I'm running postgresql 7.0.1 on Solaris 2.6, with the latest patch >> cluster. I've compiled pg and Perl 5.6.0 with gcc 2.9.5-2. > >Hmm. Your trace shows > >> open("/usr/local/pgsql/lib/plperl.so", O_RD

Re: [GENERAL] plperl crashing backend

2000-09-03 Thread Tom Lane
Michael Blakeley <[EMAIL PROTECTED]> writes: > I'm running postgresql 7.0.1 on Solaris 2.6, with the latest patch > cluster. I've compiled pg and Perl 5.6.0 with gcc 2.9.5-2. Hmm. Your trace shows > open("/usr/local/pgsql/lib/plperl.so", O_RDONLY) = 40 > open("/usr/local/lib/perl5/5.6.0/sun4-s

[GENERAL] plperl crashing backend

2000-09-03 Thread Michael Blakeley
I'm running postgresql 7.0.1 on Solaris 2.6, with the latest patch cluster. I've compiled pg and Perl 5.6.0 with gcc 2.9.5-2. I want to do some work with plperl fuctions, for text parsing. So I run psql and do: db=# CREATE FUNCTION testfunction(VARCHAR) RETURNS VARCHAR AS db-# 'return "foo"' L