aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorMarc G. Fournier <scrappy@hub.org>1998-01-25 04:08:54 +0000
committerMarc G. Fournier <scrappy@hub.org>1998-01-25 04:08:54 +0000
commit151a1238d27331caee4f1dc43e8e9e7404713575 (patch)
tree4208e041343db10f67ac018eabea413fb92a9501 /src
parentaf32f4d5d39f58009200f4aad56994baf3be4045 (diff)
downloadpostgresql-151a1238d27331caee4f1dc43e8e9e7404713575.tar.gz
postgresql-151a1238d27331caee4f1dc43e8e9e7404713575.zip
This is the second of two patches required to fix the the grant and
revoke statements. From: James Hughes <jamesh@interpath.com>
Diffstat (limited to 'src')
-rw-r--r--src/backend/parser/gram.y7
1 files changed, 1 insertions, 6 deletions
diff --git a/src/backend/parser/gram.y b/src/backend/parser/gram.y
index fae67cb8baf..213f77e29c8 100644
--- a/src/backend/parser/gram.y
+++ b/src/backend/parser/gram.y
@@ -10,7 +10,7 @@
*
*
* IDENTIFICATION
- * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.96 1998/01/22 23:04:52 momjian Exp $
+ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.97 1998/01/25 04:08:54 scrappy Exp $
*
* HISTORY
* AUTHOR DATE MAJOR EVENT
@@ -1400,8 +1400,6 @@ opt_portal_name: IN name { $$ = $2; }
GrantStmt: GRANT privileges ON relation_name_list TO grantee opt_with_grant
{
$$ = (Node*)makeAclStmt($2,$4,$6,'+');
- free($2);
- free($6);
}
;
@@ -1426,7 +1424,6 @@ operation_commalist: operation
| operation_commalist ',' operation
{
$$ = aclmakepriv($1,$3);
- free($1);
}
;
@@ -1484,8 +1481,6 @@ opt_with_grant: WITH GRANT OPTION
RevokeStmt: REVOKE privileges ON relation_name_list FROM grantee
{
$$ = (Node*)makeAclStmt($2,$4,$6,'-');
- free($2);
- free($6);
}
;