We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 47ad8d1 commit 81dc201Copy full SHA for 81dc201
src/backend/parser/gram.y
@@ -10,7 +10,7 @@
10
*
11
12
* IDENTIFICATION
13
- * $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 $
14
15
* HISTORY
16
* AUTHOR DATE MAJOR EVENT
@@ -1400,8 +1400,6 @@ opt_portal_name: IN name { $$ = $2; }
1400
GrantStmt: GRANT privileges ON relation_name_list TO grantee opt_with_grant
1401
{
1402
$$ = (Node*)makeAclStmt($2,$4,$6,'+');
1403
- pfree($2);
1404
- pfree($6);
1405
}
1406
;
1407
@@ -1426,7 +1424,6 @@ operation_commalist: operation
1426
1424
| operation_commalist ',' operation
1427
1425
1428
$$ = aclmakepriv($1,$3);
1429
- pfree($1);
1430
1431
1432
0 commit comments