Re: PLPERLU help - Mailing list pgsql-novice

From Michael Wood
Subject Re: PLPERLU help
Date
Msg-id AANLkTikOfZ6zq8locyJ3GYp0dKg_kFk-2EC__rJUzEdp@mail.gmail.com
Whole thread Raw
In response to PLPERLU help  (Atif Jung <atifjung@gmail.com>)
List pgsql-novice
On 30 June 2010 10:59, Atif Jung <atifjung@gmail.com> wrote:
> I have the following SPL written in plperlu which I need help with please.
>
> CREATE or replace FUNCTION validatesubmission(submission_num text) RETURNS
> INTEGER AS $$
>    $ISIS2_USER = "unknown";
>    $cmd = '/isis2/pgbin/valsub ' || '-u' || ISIS2_USER || ' ' ||
> submission_num;

I have never used plperlu, but I suspect your problem is the
concatenation operators you are attempting to use.  Perl uses "." for
concatenating strings, not "||".  So try changing those ||s to dots.

P.S.  What happens if this function is called with something other
than a number?  e.g. what if it includes shell meta-characters?

--
Michael Wood <esiotrot@gmail.com>

pgsql-novice by date:

Previous
From: Atif Jung
Date:
Subject: PLPERLU help
Next
From: Kent Thomas
Date:
Subject: null vs empty string