Re: pl/perl Documentation - Mailing list pgsql-novice

From Joshua b. Jore
Subject Re: pl/perl Documentation
Date
Msg-id Pine.BSO.4.44.0205221045430.14348-100000@kitten.greentechnologist.org
Whole thread Raw
In response to Re: pl/perl Documentation  (Tom Lane <tgl@sss.pgh.pa.us>)
Responses Re: pl/perl Documentation  (Tom Lane <tgl@sss.pgh.pa.us>)
List pgsql-novice
So as a perl monger I'll pitch in. I don't use PL/Perl because I know not
to expect ISPs to support it - I haven't actually used PL/Perl. I do use
PL/SQL and Perl seperately.

Here's a cleaned up version:

CREATE FUNCTION remspace(TEXT) RETURNS TEXT AS '
    return map { s/\s*// } @_;
' LANGUAGE 'plperl' WITH (isstrict);

You may have to prepend that backslash - it might be interpreted as s/s*//
which isn't right. Perform SELECT prosrc FROM pg_proc WHERE pronam =
'remspace' to see the way it came through.

Now for the perl bits:

If you want to apply the regex to an array you have to iterate over it
somehow. In this case the map operation just applies the code block
against each element in the array and returns the result.

The 'return @_' statement may or may not need a semicolon. Perl doesn't
require you use semi-colons where they aren't needed (generally). The
PL/Perl interpreter might require it anyway if it transposes your code
into other bits of code. It's just a good idea to have the semicolon
though it might not be causing you a problem.

Joshua b. Jore
http://www.greentechnologist.org

On Wed, 22 May 2002, Tom Lane wrote:

> "Duncan Adams  (DNS)" <duncan.adams@vcontractor.co.za> writes:
>
> I'm not much of a Perl hacker, but even I can see that this is not good
> Perl.  You need a semicolon to finish the return statement, and I think
> you want to manipulate the first element of the @_ array, not the whole
> array.  So something like
>
> CREATE or REPLACE FUNCTION remspace(TEXT) RETURN TEXT AS '
>     $_[0] =~ s/\s*//;
>     return $_[0];
> ' LANGUAGE 'plperl';
>
> would probably do what you want.
>
> I'd recommend getting hold of a book about Perl.
>
>             regards, tom lane
>
> ---------------------------(end of broadcast)---------------------------
> TIP 6: Have you searched our list archives?
>
> http://archives.postgresql.org
>


pgsql-novice by date:

Previous
From: "Patrick Hatcher"
Date:
Subject: Re: optimising data load
Next
From: John Taylor
Date:
Subject: Re: optimising data load