summaryrefslogtreecommitdiff
path: root/src/interfaces/ecpg
diff options
context:
space:
mode:
authorBruce Momjian2002-03-10 06:00:15 +0000
committerBruce Momjian2002-03-10 06:00:15 +0000
commitee27436f6cbedf69b2da7c6fc69548232b476833 (patch)
treeab996a5cfe900248a678d4274ec008c06de2fad8 /src/interfaces/ecpg
parentf20509551dd1ddccd84beb2bc582fa26ed431432 (diff)
Disable brackets in multi-statement rules, as discussed.
Diffstat (limited to 'src/interfaces/ecpg')
-rw-r--r--src/interfaces/ecpg/preproc/preproc.y1
1 files changed, 0 insertions, 1 deletions
diff --git a/src/interfaces/ecpg/preproc/preproc.y b/src/interfaces/ecpg/preproc/preproc.y
index 03b36aacb96..b5877f5ef9a 100644
--- a/src/interfaces/ecpg/preproc/preproc.y
+++ b/src/interfaces/ecpg/preproc/preproc.y
@@ -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(")")); }
;