summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMichael Meskes <meskes@postgresql.org>2004-01-04 14:50:13 +0000
committerMichael Meskes <meskes@postgresql.org>2004-01-04 14:50:13 +0000
commit630f23962bd96a1186dc61cf4d65297112254f1c (patch)
tree04c3330d9434aea446b946402cffefbe918ad853 /src
parentcd632c983e588ca77eafc6e932670c075cbc892c (diff)
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 aa583444ede..1725d591b06 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.263.2.4 2003/12/24 22:05:06 meskes Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.263.2.5 2004/01/04 14:50:13 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; }
;