aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2004-01-04 14:49:06 +0000
committerMichael Meskes <meskes@postgresql.org>2004-01-04 14:49:06 +0000
commit40417169ba39af18cbf05a6c9f90ffe839034ca2 (patch)
tree48e793717731369e18e23e0bc6df76b1a95fd93a /src
parent187b190adb4d84d89adc96877f3b1e67c242dbc2 (diff)
downloadpostgresql-40417169ba39af18cbf05a6c9f90ffe839034ca2.tar.gz
postgresql-40417169ba39af18cbf05a6c9f90ffe839034ca2.zip
Fixed bug in GRANT OPTION FOR parsing.
Diffstat (limited to 'src')
-rw-r--r--src/interfaces/ecpg/preproc/preproc.y4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y
index f161b899ac5..b4df32963ed 100644
--- a/src/interfaces/ecpg/preproc/preproc.y
+++ b/src/interfaces/ecpg/preproc/preproc.y
@@ -1,4 +1,4 @@
-/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.268 2003/12/24 22:04:09 meskes Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.269 2004/01/04 14:49:06 meskes Exp $ */
/* Copyright comment */
%{
@@ -2018,7 +2018,7 @@ opt_grant_grant_option: WITH GRANT OPTION
opt_revoke_grant_option: GRANT OPTION FOR
{
mmerror(PARSE_ERROR, ET_WARNING, "Currently unsupported REVOKE/GRANT OPTION FOR will be passed to backend");
- $$ = make_str("with grant option");
+ $$ = make_str("grant option for");
}
| /*EMPTY*/ { $$ = EMPTY; }
;