Re: Feature request: include script file into function body - Mailing list pgsql-bugs

From Jasen Betts
Subject Re: Feature request: include script file into function body
Date
Msg-id iie5es$b91$2@reversiblemaps.ath.cx
Whole thread Raw
In response to Feature request: include script file into function body  (Steve White <swhite@aip.de>)
List pgsql-bugs
On 2011-02-02, Steve White <swhite@aip.de> wrote:
> Hi, Robert,
>
> I made a file 'yadda_yadda.py' containing only the line:
> print 'hello world'
>
>====================================================================
> d=# \set yadda `cat yadda_yadda.py`
> d=# \echo :yadda
> print 'hello world'
>====================================================================

> But the :'yadda'; produces an error--it seems the variable yadda isn't
> expanded in the presence of the quotes.

yes, \set doesn't quote content

  \set yadda '''' `sed -e "s/'/''/g" -e 's/\\/\\\\/g' < yadda_yadda.py` ''''

 CREATE FUNCTION yadda_yadda() returns text language plpythonu AS
  E:yadda;

this is not much help for windows users though.

BTW I found that sed command on the psql man page.

--
⚂⚃ 100% natural

pgsql-bugs by date:

Previous
From: Jasen Betts
Date:
Subject: Re: Feature request: include script file into function body
Next
From: Jasen Betts
Date:
Subject: Re: Feature request: include script file into function body (better syntax)