]> git.ipfire.org Git - thirdparty/postgresql.git/commitdiff
Fixed bug in GRANT OPTION FOR parsing.
authorMichael Meskes <meskes@postgresql.org>
Sun, 4 Jan 2004 14:50:13 +0000 (14:50 +0000)
committerMichael Meskes <meskes@postgresql.org>
Sun, 4 Jan 2004 14:50:13 +0000 (14:50 +0000)
src/interfaces/ecpg/preproc/preproc.y

index aa583444ede1b81854591a52920d549466e8e0e1..1725d591b06d41e7e634a7dcb3d4b3193cd37a03 100644 (file)
@@ -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; }
                ;