mixed, named notation support

Started by Pavel Stehuleabout 17 years ago49 messageshackers
Jump to latest
#1Pavel Stehule
pavel.stehule@gmail.com

Hello

I did some cleaning on this feature, and I hope so I solve some Tom's objections

features:
* PostgreSQL's specific syntax for named parameter: value AS name,
* Doesn't change rules for defaults,
* Get defaults for named, mixed notation in planner time.

ToDo: enhance documentation (any volunteer?)

regards
Pavel Stehule

CREATE FUNCTION fx(a int, b int, m int = 1, o int = 0) RETURNS int AS $$
SELECT ($1 + $2) * $3 + $4
$$ LANGUAGE SQL;

-- positional notation
SELECT fx(10,20);
fx
----
30
(1 row)

SELECT fx(10,20,2,50);
fx
-----
110
(1 row)

-- named notation
SELECT fx(20 as b, 10 as a);
fx
----
30
(1 row)

SELECT fx(20 as b, 10 as a, 50 as o);
fx
----
80
(1 row)

-- mixed notation
SELECT fx(10,20, 10 as m);
fx
-----
300
(1 row)

SELECT fx(10,20, 50 as o, 2 as m);
fx
-----
110
(1 row)

Attachments:

named_notation_20090305.01.difftext/x-patch; charset=US-ASCII; name=named_notation_20090305.01.diffDownload+742-285
#2Bernd Helmle
mailings@oopsware.de
In reply to: Pavel Stehule (#1)
Re: mixed, named notation support

--On Donnerstag, März 05, 2009 08:41:28 +0100 Pavel Stehule
<pavel.stehule@gmail.com> wrote:

Hello

I did some cleaning on this feature, and I hope so I solve some Tom's
objections

Attached is a cleaned up version of the patch, the one linked from the
commit fest has some hunks failing to be applied to current CVS. This is
mainly for reporting and backup purposes, i'm proceeding looking into the
code deeper now. The patch passes make check and functionality check looks
fine.

Pavel, should I adjust the docs already (you've asked for volunteers...)?
If yes, have you something specific in mind?

--
Thanks

Bernd

Attachments:

named_notation_20090717_review1.difftext/x-diff; charset=utf-8; name=named_notation_20090717_review1.diffDownload+777-348
#3Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bernd Helmle (#2)
Re: mixed, named notation support

2009/7/18 Bernd Helmle <mailings@oopsware.de>:

--On Donnerstag, März 05, 2009 08:41:28 +0100 Pavel Stehule
<pavel.stehule@gmail.com> wrote:

Hello

I did some cleaning on this feature, and I hope so I solve some Tom's
objections

Attached is a cleaned up version of the patch, the one linked from the
commit fest has some hunks failing to be applied to current CVS. This is
mainly for reporting and backup purposes, i'm proceeding looking into the
code deeper now. The patch passes make check and functionality check looks
fine.

Pavel, should I adjust the docs already (you've asked for volunteers...)? If
yes, have you something specific in mind?

sure, please. Doc needs mainly language correction - my English is
bad. And maybe some others - from me is too short and too technical.

Pavel

Show quoted text

--
 Thanks

                  Bernd

#4Bernd Helmle
mailings@oopsware.de
In reply to: Pavel Stehule (#1)
Re: mixed, named notation support

--On Donnerstag, März 05, 2009 08:41:28 +0100 Pavel Stehule
<pavel.stehule@gmail.com> wrote:

Hello

I did some cleaning on this feature, and I hope so I solve some Tom's
objections

features:
* PostgreSQL's specific syntax for named parameter: value AS name,
* Doesn't change rules for defaults,
* Get defaults for named, mixed notation in planner time.

Pavel, consider the following function:

CREATE OR REPLACE FUNCTION ftest(a int, b text)
RETURNS RECORD
LANGUAGE SQL
AS
$$
SELECT $1, $2 ;
$$;

#= SELECT ftest('blubb' AS b, 128 AS a);
ERROR: function ftest(unknown, integer) does not exist at character 8

#= SELECT ftest(128 AS a, 'abcd' AS b);
ftest
------------
(128,abcd)
(1 row)

Isn't the first one supposed to work?

--
Thanks

Bernd

#5Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bernd Helmle (#4)
Re: mixed, named notation support

2009/7/23 Bernd Helmle <mailings@oopsware.de>:

--On Donnerstag, März 05, 2009 08:41:28 +0100 Pavel Stehule
<pavel.stehule@gmail.com> wrote:

Hello

I did some cleaning on this feature, and I hope so I solve some Tom's
objections

features:
 * PostgreSQL's specific syntax for named parameter: value AS name,
 * Doesn't change rules for defaults,
 * Get defaults for named, mixed notation in planner time.

Pavel, consider the following function:

CREATE OR REPLACE FUNCTION ftest(a int, b text)
RETURNS RECORD
LANGUAGE SQL
AS
$$
      SELECT $1, $2 ;
$$;

#= SELECT ftest('blubb' AS b, 128 AS a);
ERROR:  function ftest(unknown, integer) does not exist at character 8

#= SELECT ftest(128 AS a, 'abcd' AS b);
 ftest
------------
(128,abcd)
(1 row)

Isn't the first one supposed to work?

it is probably bug. I'll look on it tomorrow.

Pavel

Show quoted text

--
 Thanks

                  Bernd

#6Pavel Stehule
pavel.stehule@gmail.com
In reply to: Pavel Stehule (#5)
Re: mixed, named notation support

Hello,

fixed patch attached + more regress tests.

Regards
Pavel Stehule

2009/7/23 Pavel Stehule <pavel.stehule@gmail.com>:

Show quoted text

2009/7/23 Bernd Helmle <mailings@oopsware.de>:

--On Donnerstag, März 05, 2009 08:41:28 +0100 Pavel Stehule
<pavel.stehule@gmail.com> wrote:

Hello

I did some cleaning on this feature, and I hope so I solve some Tom's
objections

features:
 * PostgreSQL's specific syntax for named parameter: value AS name,
 * Doesn't change rules for defaults,
 * Get defaults for named, mixed notation in planner time.

Pavel, consider the following function:

CREATE OR REPLACE FUNCTION ftest(a int, b text)
RETURNS RECORD
LANGUAGE SQL
AS
$$
      SELECT $1, $2 ;
$$;

#= SELECT ftest('blubb' AS b, 128 AS a);
ERROR:  function ftest(unknown, integer) does not exist at character 8

#= SELECT ftest(128 AS a, 'abcd' AS b);
 ftest
------------
(128,abcd)
(1 row)

Isn't the first one supposed to work?

it is probably bug. I'll look on it tomorrow.

Pavel

--
 Thanks

                  Bernd

Attachments:

named-fixed.diff.gzapplication/x-gzip; name=named-fixed.diff.gzDownload
#7Pavel Stehule
pavel.stehule@gmail.com
In reply to: Pavel Stehule (#6)
Re: mixed, named notation support

Hi,

I sending a little bit modified version - I removed my forgotten
comment in gram.y

Regards
Pavel

2009/7/25 Pavel Stehule <pavel.stehule@gmail.com>:

Show quoted text

Hello,

fixed patch attached + more regress tests.

Regards
Pavel Stehule

2009/7/23 Pavel Stehule <pavel.stehule@gmail.com>:

2009/7/23 Bernd Helmle <mailings@oopsware.de>:

--On Donnerstag, März 05, 2009 08:41:28 +0100 Pavel Stehule
<pavel.stehule@gmail.com> wrote:

Hello

I did some cleaning on this feature, and I hope so I solve some Tom's
objections

features:
 * PostgreSQL's specific syntax for named parameter: value AS name,
 * Doesn't change rules for defaults,
 * Get defaults for named, mixed notation in planner time.

Pavel, consider the following function:

CREATE OR REPLACE FUNCTION ftest(a int, b text)
RETURNS RECORD
LANGUAGE SQL
AS
$$
      SELECT $1, $2 ;
$$;

#= SELECT ftest('blubb' AS b, 128 AS a);
ERROR:  function ftest(unknown, integer) does not exist at character 8

#= SELECT ftest(128 AS a, 'abcd' AS b);
 ftest
------------
(128,abcd)
(1 row)

Isn't the first one supposed to work?

it is probably bug. I'll look on it tomorrow.

Pavel

--
 Thanks

                  Bernd

Attachments:

named-fixed.diff.gzapplication/x-gzip; name=named-fixed.diff.gzDownload
#8Bernd Helmle
mailings@oopsware.de
In reply to: Pavel Stehule (#7)
Re: mixed, named notation support

--On Sonntag, Juli 26, 2009 06:17:49 +0200 Pavel Stehule
<pavel.stehule@gmail.com> wrote:

Hi,

I sending a little bit modified version - I removed my forgotten
comment in gram.y

Thanks, i'll look on it asap.

--
Thanks

Bernd

#9Bernd Helmle
mailings@oopsware.de
In reply to: Bernd Helmle (#8)
Re: mixed, named notation support

--On Montag, Juli 27, 2009 15:24:12 +0200 Bernd Helmle
<mailings@oopsware.de> wrote:

Hi,

I sending a little bit modified version - I removed my forgotten
comment in gram.y

Thanks, i'll look on it asap.

Looks good now.

Here is a slightly edited reviewed patch version. I've edited the docs and
fixed some spelling errors in a few error messages. It seems the patch
mangled some source comments in namespace.c, i've rearranged them and tried
to explain the purpose of VerifyCandidateNamedNotation(). I'm continuing
reviewing this but can't get on it again until sunday.

Pavel, can you have a look at the docs part of this patch and watch out for
any gotchas?

--
Thanks

Bernd

Attachments:

named_and_mixed_notation_review2.patch.gzapplication/octet-stream; name=named_and_mixed_notation_review2.patch.gzDownload
#10Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bernd Helmle (#9)
Re: mixed, named notation support

2009/7/31 Bernd Helmle <mailings@oopsware.de>:

--On Montag, Juli 27, 2009 15:24:12 +0200 Bernd Helmle
<mailings@oopsware.de> wrote:

Hi,

I sending a little bit modified version - I removed my forgotten
comment in gram.y

Thanks, i'll look on it asap.

Looks good now.

Here is a slightly edited reviewed patch version. I've edited the docs and
fixed some spelling errors in a few error messages. It seems the patch
mangled some source comments in namespace.c, i've rearranged them and tried
to explain the purpose of VerifyCandidateNamedNotation(). I'm continuing
reviewing this but can't get on it again until sunday.

Pavel, can you have a look at the docs part of this patch and watch out for
any gotchas?

Today, I'll look on it.

Pavel

Show quoted text

--
 Thanks

                  Bernd

#11Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bernd Helmle (#9)
Re: mixed, named notation support

2009/7/31 Bernd Helmle <mailings@oopsware.de>:

--On Montag, Juli 27, 2009 15:24:12 +0200 Bernd Helmle
<mailings@oopsware.de> wrote:

Hi,

I sending a little bit modified version - I removed my forgotten
comment in gram.y

Thanks, i'll look on it asap.

Looks good now.

Here is a slightly edited reviewed patch version. I've edited the docs and
fixed some spelling errors in a few error messages. It seems the patch
mangled some source comments in namespace.c, i've rearranged them and tried
to explain the purpose of VerifyCandidateNamedNotation(). I'm continuing
reviewing this but can't get on it again until sunday.

Pavel, can you have a look at the docs part of this patch and watch out for
any gotchas?

I looked there and I thing it's very good. I have only one idea about
samples in docs. Mathematical function isn't too much readable. Maybe
some string concation or returning record should be more readable.

create or replace function foo(a varchar, b varchar, uppercase boolean = false)
returns varchar as $$
select when uppercase then 'a=' || a ', b=' || b
else upper('a=' || a ', b=' || b) end;
$$ language sql immutable strict;

select foo('Hello','World');
select foo('Hello', World', true);
select foo('Hello' as a, 'World' as b);
select foo('Hello', 'World', true as uppercase);
select foo(true as uppercase, 'World' as b, 'Hello' as b);

or some similar

Thank You very much
Pavel

Show quoted text

--
 Thanks

                  Bernd

#12Robert Haas
robertmhaas@gmail.com
In reply to: Pavel Stehule (#11)
Re: mixed, named notation support

On Fri, Jul 31, 2009 at 8:46 AM, Pavel Stehule<pavel.stehule@gmail.com> wrote:

2009/7/31 Bernd Helmle <mailings@oopsware.de>:

--On Montag, Juli 27, 2009 15:24:12 +0200 Bernd Helmle
<mailings@oopsware.de> wrote:

Hi,

I sending a little bit modified version - I removed my forgotten
comment in gram.y

Thanks, i'll look on it asap.

Looks good now.

Here is a slightly edited reviewed patch version. I've edited the docs and
fixed some spelling errors in a few error messages. It seems the patch
mangled some source comments in namespace.c, i've rearranged them and tried
to explain the purpose of VerifyCandidateNamedNotation(). I'm continuing
reviewing this but can't get on it again until sunday.

Pavel, can you have a look at the docs part of this patch and watch out for
any gotchas?

I looked there and I thing it's very good. I have only one idea about
samples in docs. Mathematical function isn't too much readable. Maybe
some string concation or returning record should be more readable.

create or replace function foo(a varchar, b varchar, uppercase boolean = false)
returns varchar as $$
 select when uppercase then 'a=' || a ', b=' || b
                                      else upper('a=' || a ', b=' || b) end;
$$ language sql immutable strict;

select foo('Hello','World');
select foo('Hello', World', true);
select foo('Hello' as a, 'World' as b);
select foo('Hello', 'World', true as uppercase);
select foo(true as uppercase, 'World' as b, 'Hello' as b);

or some similar

Thank You very much
Pavel

What's the current status of this patch? Is someone (either Pavel or
Bernd) planning to update it further, or should it be marked Ready for
Committer?

Thanks,

...Robert

#13Pavel Stehule
pavel.stehule@gmail.com
In reply to: Robert Haas (#12)
Re: mixed, named notation support

2009/8/2 Robert Haas <robertmhaas@gmail.com>:

On Fri, Jul 31, 2009 at 8:46 AM, Pavel Stehule<pavel.stehule@gmail.com> wrote:

2009/7/31 Bernd Helmle <mailings@oopsware.de>:

--On Montag, Juli 27, 2009 15:24:12 +0200 Bernd Helmle
<mailings@oopsware.de> wrote:

Hi,

I sending a little bit modified version - I removed my forgotten
comment in gram.y

Thanks, i'll look on it asap.

Looks good now.

Here is a slightly edited reviewed patch version. I've edited the docs and
fixed some spelling errors in a few error messages. It seems the patch
mangled some source comments in namespace.c, i've rearranged them and tried
to explain the purpose of VerifyCandidateNamedNotation(). I'm continuing
reviewing this but can't get on it again until sunday.

Pavel, can you have a look at the docs part of this patch and watch out for
any gotchas?

I looked there and I thing it's very good. I have only one idea about
samples in docs. Mathematical function isn't too much readable. Maybe
some string concation or returning record should be more readable.

create or replace function foo(a varchar, b varchar, uppercase boolean = false)
returns varchar as $$
 select when uppercase then 'a=' || a ', b=' || b
                                      else upper('a=' || a ', b=' || b) end;
$$ language sql immutable strict;

select foo('Hello','World');
select foo('Hello', World', true);
select foo('Hello' as a, 'World' as b);
select foo('Hello', 'World', true as uppercase);
select foo(true as uppercase, 'World' as b, 'Hello' as b);

or some similar

Thank You very much
Pavel

What's the current status of this patch?  Is someone (either Pavel or
Bernd) planning to update it further, or should it be marked Ready for
Committer?

Hello

Bernard wrote so will look on it today - I expect so there will be
only cosmetic changes in doc.

Pavel

Show quoted text

Thanks,

...Robert

#14Bernd Helmle
mailings@oopsware.de
In reply to: Robert Haas (#12)
Re: mixed, named notation support

--On Sonntag, August 02, 2009 11:38:22 -0400 Robert Haas
<robertmhaas@gmail.com> wrote:

What's the current status of this patch? Is someone (either Pavel or
Bernd) planning to update it further, or should it be marked Ready for
Committer?

I will incorporate some additional docs adjustments per Pavels suggestion
and will then mark it ready for committer review.

Please note that there are actually two patches involved here: one is
Pavels' patch the other is Steve Prentice' enhancement to allow named
notation in plpgsql.

--
Thanks

Bernd

#15Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bernd Helmle (#14)
Re: mixed, named notation support

2009/8/3 Bernd Helmle <mailings@oopsware.de>:

--On Sonntag, August 02, 2009 11:38:22 -0400 Robert Haas
<robertmhaas@gmail.com> wrote:

What's the current status of this patch?  Is someone (either Pavel or
Bernd) planning to update it further, or should it be marked Ready for
Committer?

I will incorporate some additional docs adjustments per Pavels suggestion
and will then mark it ready for committer review.

Please note that there are actually two patches involved here: one is
Pavels' patch the other is Steve Prentice' enhancement to allow named
notation in plpgsql.

I should to wait with Steve patch - I would to add main sql parser
into plpgsql - than Steve's patch is unnecessary. But if there will be
some problems, then we can use Steve's patch. It is simple - so there
are not big problems with commit.

Show quoted text

--
 Thanks

                  Bernd

#16Steve Prentice
prentice@cisco.com
In reply to: Pavel Stehule (#15)
Re: mixed, named notation support

On Aug 3, 2009, at 1:41 AM, Pavel Stehule wrote:

I should to wait with Steve patch - I would to add main sql parser
into plpgsql - than Steve's patch is unnecessary. But if there will be
some problems, then we can use Steve's patch. It is simple - so there
are not big problems with commit.

I was hoping we could get the small patch into plpgsql during this
commitfest. This makes plpgsql recognize 'AS' and not replace named
parameter labels with the variable reference. I understand there is an
effort underway to redo the plpgsql parser, but getting these two
patches in together will allow people to start playing with plpgsql +
named parameters at the end the of commitfest when the first alpha is
released. (You can use named parameters + plpgsql without this patch,
but not without some pretty serious limitations.)

Without this patch, this will fail:

create function create_user(alias text, display_name text) returns
void as $$
BEGIN
perform create_alias(alias AS alias);
...
END
$$ language plpgsql;

This is a common pattern for many of the stored procedures we are
porting and I'd imagine it's common elsewhere too. If the plpgsql
parser patch lands, this patch won't be needed, but it's hard to
predict when it will land.

As an aside, this pattern really shows how confusing the AS syntax can
be for named parameters. Which side is the label and which is the value?

Thanks,
-Steve

#17Pavel Stehule
pavel.stehule@gmail.com
In reply to: Steve Prentice (#16)
Re: mixed, named notation support

2009/8/3 Steve Prentice <prentice@cisco.com>:

On Aug 3, 2009, at 1:41 AM, Pavel Stehule wrote:

I should to wait with Steve patch - I would to add main sql parser
into plpgsql - than Steve's patch is unnecessary. But if there will be
some problems, then we can use Steve's patch. It is simple - so there
are not big problems with commit.

I was hoping we could get the small patch into plpgsql during this
commitfest. This makes plpgsql recognize 'AS' and not replace named
parameter labels with the variable reference. I understand there is an
effort underway to redo the plpgsql parser, but getting these two patches in
together will allow people to start playing with plpgsql + named parameters
at the end the of commitfest when the first alpha is released. (You can use
named parameters + plpgsql without this patch, but not without some pretty
serious limitations.)

Without this patch, this will fail:

create function create_user(alias text, display_name text) returns void as
$$
 BEGIN
   perform create_alias(alias AS alias);
   ...
 END
$$ language plpgsql;

This is a common pattern for many of the stored procedures we are porting
and I'd imagine it's common elsewhere too. If the plpgsql parser patch
lands, this patch won't be needed, but it's hard to predict when it will
land.

As an aside, this pattern really shows how confusing the AS syntax can be
for named parameters. Which side is the label and which is the value?

ok - I don't though about it. My goal is integration main parser next
commitfest, but it is true, so somebody would to play with named
params now. Commiting of Steve's patch doesn't break anything.

Pavel

Show quoted text

Thanks,
-Steve

#18Robert Haas
robertmhaas@gmail.com
In reply to: Pavel Stehule (#17)
Re: mixed, named notation support

On Mon, Aug 3, 2009 at 10:51 AM, Pavel Stehule<pavel.stehule@gmail.com> wrote:

2009/8/3 Steve Prentice <prentice@cisco.com>:

On Aug 3, 2009, at 1:41 AM, Pavel Stehule wrote:

I should to wait with Steve patch - I would to add main sql parser
into plpgsql - than Steve's patch is unnecessary. But if there will be
some problems, then we can use Steve's patch. It is simple - so there
are not big problems with commit.

I was hoping we could get the small patch into plpgsql during this
commitfest. This makes plpgsql recognize 'AS' and not replace named
parameter labels with the variable reference. I understand there is an
effort underway to redo the plpgsql parser, but getting these two patches in
together will allow people to start playing with plpgsql + named parameters
at the end the of commitfest when the first alpha is released. (You can use
named parameters + plpgsql without this patch, but not without some pretty
serious limitations.)

Without this patch, this will fail:

create function create_user(alias text, display_name text) returns void as
$$
 BEGIN
   perform create_alias(alias AS alias);
   ...
 END
$$ language plpgsql;

This is a common pattern for many of the stored procedures we are porting
and I'd imagine it's common elsewhere too. If the plpgsql parser patch
lands, this patch won't be needed, but it's hard to predict when it will
land.

As an aside, this pattern really shows how confusing the AS syntax can be
for named parameters. Which side is the label and which is the value?

ok - I don't though about it. My goal is integration main parser next
commitfest, but it is true, so somebody would to play with named
params now. Commiting of Steve's patch doesn't break anything.

I'm a little confused here. We are 19 days into a 31 day CommitFest;
you are almost three weeks too late to add a patch to the queue.
Unless you can convince a friendly committer to pick this up out of
sequence, I think the only patch that is under consideration here is
the one that has been being discussed on this thread for the last 17
days. I sent several notes adding for all patches to be added to
commitfest.postgresql.org prior to the start of CommitFest; AFAIK,
this one was never added.

You haven't actually specified which other patch of Steve's you're
talking about anyway, but I'm guessing it's this one here:
http://archives.postgresql.org/pgsql-hackers/2009-05/msg00801.php

I don't think that patch would get applied even if HAD been added to
the CommitFest page in time, see Tom's remarks here:
http://archives.postgresql.org/pgsql-hackers/2009-05/msg00802.php

Let's get back to focusing on the patch that is actually under
consideration here.

...Robert

#19Pavel Stehule
pavel.stehule@gmail.com
In reply to: Robert Haas (#18)
Re: mixed, named notation support

ok - I don't though about it. My goal is integration main parser next
commitfest, but it is true, so somebody would to play with named
params now. Commiting of Steve's patch doesn't break anything.

I'm a little confused here.  We are 19 days into a 31 day CommitFest;
you are almost three weeks too late to add a patch to the queue.
Unless you can convince a friendly committer to pick this up out of
sequence, I think the only patch that is under consideration here is
the one that has been being discussed on this thread for the last 17
days.  I sent several notes adding for all patches to be added to
commitfest.postgresql.org prior to the start of CommitFest; AFAIK,
this one was never added.

You haven't actually specified which other patch of Steve's you're
talking about anyway, but I'm guessing it's this one here:
http://archives.postgresql.org/pgsql-hackers/2009-05/msg00801.php

I don't think that patch would get applied even if HAD been added to
the CommitFest page in time, see Tom's remarks here:
http://archives.postgresql.org/pgsql-hackers/2009-05/msg00802.php

Let's get back to focusing on the patch that is actually under
consideration here.

There are two patches - named and mixed parameters and protecting "AS"
as keyword. First patch is pl independed, second patch is related to
plpgsql. Both patches was in queue and Bernard did reviewing both I
thing. Second patch fix some unwanted behave in plpgsql and it does on
level that was possible on code base one month old.

I hope, so we will be able to integrate main parser to core. I hope so
this will be in next commitfest. If we doesn't release code after this
commitfest, then I'll prefer wait for integration, but now, when we
will release code, I thing, so for somebody should be nice to use
fixed plpgsql.

I thing so Steve fixed issues mentioned by Tom

http://archives.postgresql.org/pgsql-hackers/2009-05/msg00804.php

Integration of main parser to plpgsql will be very significant change
and it needs separate patch. This solve some others big problems
plpgsql and I would to solve it separately.

I'll be glad to answer all questions.

Pavel

Show quoted text

...Robert

#20Steve Prentice
prentice@cisco.com
In reply to: Robert Haas (#18)
Re: mixed, named notation support

On Aug 3, 2009, at 9:38 AM, Robert Haas wrote:

I sent several notes adding for all patches to be added to
commitfest.postgresql.org prior to the start of CommitFest; AFAIK,
this one was never added.

Hi Robert,

The patch for plpgsql was added as a comment to Pavel's patch. I added
it as a comment because it wouldn't make since to commit it or even
review it separately. This was done on the wiki before the migration.
Perhaps that was not the correct way to add it to the commitfest. If
not, my apologies.

-Steve

#21Bernd Helmle
mailings@oopsware.de
In reply to: Robert Haas (#18)
#22Bernd Helmle
mailings@oopsware.de
In reply to: Steve Prentice (#20)
#23Kevin Grittner
Kevin.Grittner@wicourts.gov
In reply to: Bernd Helmle (#21)
#24Bernd Helmle
mailings@oopsware.de
In reply to: Robert Haas (#18)
#25Bernd Helmle
mailings@oopsware.de
In reply to: Bernd Helmle (#24)
#26Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bernd Helmle (#25)
#27Bernd Helmle
mailings@oopsware.de
In reply to: Pavel Stehule (#26)
#28Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bernd Helmle (#27)
#29Bernd Helmle
mailings@oopsware.de
In reply to: Pavel Stehule (#28)
#30Pavel Stehule
pavel.stehule@gmail.com
In reply to: Bernd Helmle (#29)
#31Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bernd Helmle (#29)
#32Robert Haas
robertmhaas@gmail.com
In reply to: Tom Lane (#31)
#33Steve Prentice
prentice@cisco.com
In reply to: Robert Haas (#32)
#34Pavel Stehule
pavel.stehule@gmail.com
In reply to: Robert Haas (#32)
#35Pavel Stehule
pavel.stehule@gmail.com
In reply to: Tom Lane (#31)
#36Bernd Helmle
mailings@oopsware.de
In reply to: Tom Lane (#31)
#37Tom Lane
tgl@sss.pgh.pa.us
In reply to: Robert Haas (#32)
#38Robert Haas
robertmhaas@gmail.com
In reply to: Tom Lane (#37)
#39Tom Lane
tgl@sss.pgh.pa.us
In reply to: Robert Haas (#38)
#40Bernd Helmle
mailings@oopsware.de
In reply to: Tom Lane (#39)
#41Tom Lane
tgl@sss.pgh.pa.us
In reply to: Bernd Helmle (#40)
#42Bernd Helmle
mailings@oopsware.de
In reply to: Tom Lane (#41)
#43Robert Haas
robertmhaas@gmail.com
In reply to: Tom Lane (#39)
#44Tom Lane
tgl@sss.pgh.pa.us
In reply to: Robert Haas (#43)
#45Robert Haas
robertmhaas@gmail.com
In reply to: Tom Lane (#44)
#46Tom Lane
tgl@sss.pgh.pa.us
In reply to: Robert Haas (#45)
#47Pavel Stehule
pavel.stehule@gmail.com
In reply to: Tom Lane (#39)
#48Pavel Stehule
pavel.stehule@gmail.com
In reply to: Pavel Stehule (#47)
#49Kevin Grittner
Kevin.Grittner@wicourts.gov
In reply to: Robert Haas (#43)