From: Dave Cramer Date: Mon, 1 Nov 2004 13:35:54 +0000 (+0000) Subject: fixed bug in REVOKE statement cat_str only has 8 arguments X-Git-Url: http://git.postgresql.org/gitweb/static/gitweb.js?a=commitdiff_plain;h=467276ac3211a219193bb63299922b5ae9c6efba;p=users%2Fbernd%2Fpostgres.git fixed bug in REVOKE statement cat_str only has 8 arguments --- diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y index f1f90090f8..b6cc1d0c1b 100644 --- a/src/interfaces/ecpg/preproc/preproc.y +++ b/src/interfaces/ecpg/preproc/preproc.y @@ -1953,7 +1953,7 @@ GrantStmt: GRANT privileges ON privilege_target TO grantee_list opt_grant_grant_ RevokeStmt: REVOKE opt_revoke_grant_option privileges ON privilege_target FROM grantee_list opt_drop_behavior { - $$ = cat_str(9, make_str("revoke"), $2, $3, make_str("on"), $5, make_str("from"), $7, $8); + $$ = cat_str(8, make_str("revoke"), $2, $3, make_str("on"), $5, make_str("from"), $7, $8); } ;