aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorDave Cramer <davec@fastcrypt.com>2004-11-01 13:35:54 +0000
committerDave Cramer <davec@fastcrypt.com>2004-11-01 13:35:54 +0000
commit5a57beccc312ceb3e7824f47808f76b5fde13734 (patch)
tree347df035e5275eca0c49ab4cbd4c2cf2135a7214 /src
parent5328b5ef6b34e1134ab91231c7092d8d6fcf8c1d (diff)
downloadpostgresql-5a57beccc312ceb3e7824f47808f76b5fde13734.tar.gz
postgresql-5a57beccc312ceb3e7824f47808f76b5fde13734.zip
fixed bug in REVOKE statement cat_str only has 8 arguments
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 7f699a055ac..32c1136419f 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.17 2004/06/27 12:32:47 meskes Exp $ */
+/* $PostgreSQL: pgsql/src/interfaces/ecpg/preproc/preproc.y,v 1.263.2.18 2004/11/01 13:35:54 davec Exp $ */
/* Copyright comment */
%{
@@ -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);
}
;