1
0
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:
Bruce Momjian
2002-03-10 06:00:15 +00:00
parent f20509551d
commit ee27436f6c
3 changed files with 11 additions and 15 deletions

View File

@@ -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(")")); }
;