From: | Pavel Stehule <pavel(dot)stehule(at)gmail(dot)com> |
---|---|
To: | PostgreSQL Hackers <pgsql-hackers(at)postgresql(dot)org> |
Cc: | Dimitri Fontaine <dfontaine(at)hi-media(dot)com>, Peter Eisentraut <peter_e(at)gmx(dot)net>, Florian Pflug <fgp(at)phlo(dot)org> |
Subject: | patch: inline code with params |
Date: | 2012-07-06 20:01:02 |
Message-ID: | CAFj8pRDTan1b4n4TuBWDPraM+iN2UVTuPqMquE7V4KcPXH7MDg@mail.gmail.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-hackers |
Hello
I updated my two years old patch
http://archives.postgresql.org/pgsql-hackers/2010-07/txtIakTCBA15Z.txt
Syntax is based on Florian Pflog's proposal
http://archives.postgresql.org/pgsql-hackers/2010-07/msg00110.php
postgres=# do (a int, b int, text) $$begin raise notice '% % %', $1,
$2, $3; end; $$ language plpgsql using 10+100,20, :'USER';
NOTICE: 110 20 pavel
DO
This patch is not final - missing documentation, regress tests, and
doesn't support subselects as expr.
Attachment | Content-Type | Size |
---|---|---|
inline_code_with_params.patch | application/octet-stream | 14.4 KB |
From | Date | Subject | |
---|---|---|---|
Next Message | Robert Haas | 2012-07-06 20:09:36 | Re: Event Triggers reduced, v1 |
Previous Message | Dimitri Fontaine | 2012-07-06 20:00:30 | Re: Event Triggers reduced, v1 |