1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-17 06:41:09 +03:00

Wish ppl would make up their mnd :)

This commit is contained in:
Marc G. Fournier
1998-01-25 04:12:28 +00:00
parent 47ad8d1cf5
commit 81dc201921

View File

@ -10,7 +10,7 @@
* *
* *
* IDENTIFICATION * IDENTIFICATION
* $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.98 1998/01/25 04:10:32 scrappy Exp $ * $Header: /cvsroot/pgsql/src/backend/parser/gram.y,v 1.99 1998/01/25 04:12:28 scrappy Exp $
* *
* HISTORY * HISTORY
* AUTHOR DATE MAJOR EVENT * 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 GrantStmt: GRANT privileges ON relation_name_list TO grantee opt_with_grant
{ {
$$ = (Node*)makeAclStmt($2,$4,$6,'+'); $$ = (Node*)makeAclStmt($2,$4,$6,'+');
pfree($2);
pfree($6);
} }
; ;
@ -1426,7 +1424,6 @@ operation_commalist: operation
| operation_commalist ',' operation | operation_commalist ',' operation
{ {
$$ = aclmakepriv($1,$3); $$ = aclmakepriv($1,$3);
pfree($1);
} }
; ;