diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2010-02-17 04:19:41 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2010-02-17 04:19:41 +0000 |
commit | 50a90fac40db82680ac7ceacf3348f3f08f5343e (patch) | |
tree | 24d7acc1eae21fad0063ba7c9f5acd0f08c4d7d6 /src/backend/commands/functioncmds.c | |
parent | 37ec19a15ce452ee94f32ebc3d6a9a45868e82fd (diff) | |
download | postgresql-50a90fac40db82680ac7ceacf3348f3f08f5343e.tar.gz postgresql-50a90fac40db82680ac7ceacf3348f3f08f5343e.zip |
Stamp HEAD as 9.0devel, and update various places that were referring to 8.5
(hope I got 'em all). Per discussion, this release will be 9.0 not 8.5.
Diffstat (limited to 'src/backend/commands/functioncmds.c')
-rw-r--r-- | src/backend/commands/functioncmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/functioncmds.c b/src/backend/commands/functioncmds.c index 0a9920097b6..3de1a9b0caa 100644 --- a/src/backend/commands/functioncmds.c +++ b/src/backend/commands/functioncmds.c @@ -10,7 +10,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/functioncmds.c,v 1.116 2010/02/14 18:42:14 rhaas Exp $ + * $PostgreSQL: pgsql/src/backend/commands/functioncmds.c,v 1.117 2010/02/17 04:19:39 tgl Exp $ * * DESCRIPTION * These routines take the parse tree and pick out the @@ -288,7 +288,7 @@ examine_parameter_list(List *parameters, Oid languageOid, ListCell *px; /* - * As of Postgres 8.5 we disallow using the same name for two + * As of Postgres 9.0 we disallow using the same name for two * input or two output function parameters. Depending on the * function's language, conflicting input and output names might * be bad too, but we leave it to the PL to complain if so. |