Re: Hello PL/Python

From: Hannu Krosing <hannu(at)tm(dot)ee>
To: Karel Zak <zakkr(at)zf(dot)jcu(dot)cz>
Cc: pgsql-hackers <pgsql-hackers(at)postgresql(dot)org>, vello(at)pyystel(dot)ee
Subject: Re: Hello PL/Python
Date: 2000-07-20 09:30:54
Message-ID: 3976C6CE.2112020E@tm.ee
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-hackers

Karel Zak wrote:
>
> Today afternoon I a little study libpython1.5 and I mean create
> new PL language is not a problem.
>
> I a little play with it, and here is effect:
>
> test=# CREATE FUNCTION py_test() RETURNS text AS '
> test'# a = ''Hello '';
> test'# b = ''PL/Python'';
> test'# plpython.retval( a + b );
> test'# ' LANGUAGE 'plpython';
> CREATE
> test=#
> test=#
> test=# SELECT py_test();
> py_test
> -----------------
> Hello PL/Python
> (1 row)
>
> Comments? Works on this already anyone?

There is a semi-complete implementation (i.e. no trigger procedures)
by Vello Kadarpik (vello(at)pyystel(dot)ee).

He is probably waiting for fmgr redesign or somesuch to complete before
releasing it.

---------
Hannu

In response to

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Karel Zak 2000-07-20 10:40:04 Re: Hello PL/Python
Previous Message Karel Zak 2000-07-20 09:02:50 Re: Re: [HACKERS] 8Ko limitation