On Tue, Feb 1, 2011 at 3:09 PM, Kevin Grittner <[email protected]> wrote: > Steve White <[email protected]> wrote: >> On 1.02.11, Tom Lane wrote: >>> "Kevin Grittner" <[email protected]> writes: >>>> Maybe some option for the \i command? \iq (for input quoted) >>>> with automatic $$ quoting around what is read? >>> >>>> That way you could do something like: >>> >>>> CREATE FUNCTION yadda_yadda() returns text language plpythonu as >>>> \iq yadda_yadda.py >>>> ; >> >> Yes this will work for me. >> >>> >>> Just got this --- looks like we independently arrived at the same >>> conclusion. > > I'll add it to the TODO list. It looks like we might finally have a > good one for those looking for an easy item from that list. Those > have been scarce lately.
Can't you already do it this way: \set yadda `cat yadda_yadda.py` CREATE FUNCTION yadda_yadda() returns text language plpythonu AS :'yadda'; I guess it probably won't work on Windows... -- Robert Haas EnterpriseDB: http://www.enterprisedb.com The Enterprise PostgreSQL Company -- Sent via pgsql-bugs mailing list ([email protected]) To make changes to your subscription: http://www.postgresql.org/mailpref/pgsql-bugs
