mirror of
https://github.com/postgres/postgres.git
synced 2025-08-30 06:01:21 +03:00
Disable brackets in multi-statement rules, as discussed.
This commit is contained in:
@@ -2153,7 +2153,6 @@ RuleStmt: CREATE RULE name AS
|
||||
|
||||
RuleActionList: NOTHING { $$ = make_str("nothing"); }
|
||||
| RuleActionStmt { $$ = $1; }
|
||||
| '[' RuleActionMulti ']' { $$ = cat_str(3, make_str("["), $2, make_str("]")); }
|
||||
| '(' RuleActionMulti ')' { $$ = cat_str(3, make_str("("), $2, make_str(")")); }
|
||||
;
|
||||
|
||||
|
Reference in New Issue
Block a user