plpython_do_sql.diff

text/plain

Filename: plpython_do_sql.diff
Type: text/plain
Part: 0
Message: plpythonu DO support (inline call handler)

Patch

Format: unified
File+
expected/plpython_do.out 3 0
sql/plpython_do.sql 1 0
--- jee	1970-01-01 02:00:00.000000000 +0200
+++ sql/plpython_do.sql	2009-11-16 09:11:07.000000000 +0200
@@ -0,0 +1 @@
+DO $$ plpy.notice("This is plpythonu") $$ LANGUAGE plpythonu;
--- jee	1970-01-01 02:00:00.000000000 +0200
+++ expected/plpython_do.out	2009-11-16 09:11:31.000000000 +0200
@@ -0,0 +1,3 @@
+DO $$ plpy.notice("This is plpythonu") $$ LANGUAGE plpythonu;
+NOTICE:  This is plpythonu
+CONTEXT:  PL/Python function "inline_plpythonu_function"