Skip to content

Commit 4041716

Browse files
author
Michael Meskes
committed
Fixed bug in GRANT OPTION FOR parsing.
1 parent 187b190 commit 4041716

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/interfaces/ecpg/preproc/preproc.y

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.268 2003/12/24 22:04:09 meskes Exp $ */
1+
/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.269 2004/01/04 14:49:06 meskes Exp $ */
22

33
/* Copyright comment */
44
%{
@@ -2018,7 +2018,7 @@ opt_grant_grant_option: WITH GRANT OPTION
20182018
opt_revoke_grant_option: GRANT OPTION FOR
20192019
{
20202020
mmerror(PARSE_ERROR, ET_WARNING, "Currently unsupported REVOKE/GRANT OPTION FOR will be passed to backend");
2021-
$$ = make_str("with grant option");
2021+
$$ = make_str("grant option for");
20222022
}
20232023
| /*EMPTY*/ { $$ = EMPTY; }
20242024
;

0 commit comments

Comments
 (0)