From: Michael Meskes Date: Sun, 4 Jan 2004 14:50:13 +0000 (+0000) Subject: Fixed bug in GRANT OPTION FOR parsing. X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=cb92fbcb20719bc5afa78b4dc2c3a35eda40a1a2;p=users%2Fbernd%2Fpostgres.git Fixed bug in GRANT OPTION FOR parsing. --- diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y index 7df9761020..f779d23c03 100644 --- a/src/interfaces/ecpg/preproc/preproc.y +++ b/src/interfaces/ecpg/preproc/preproc.y @@ -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; } ;