--- gram.y.orig Thu May 25 15:42:17 2000 +++ gram.y Thu Oct 19 14:34:47 2000 @@ -2585,7 +2585,6 @@ ; RuleActionList: NOTHING { $$ = NIL; } - | SelectStmt { $$ = lcons($1, NIL); } | RuleActionStmt { $$ = lcons($1, NIL); } | '[' RuleActionMulti ']' { $$ = $2; } | '(' RuleActionMulti ')' { $$ = $2; } @@ -2607,6 +2606,7 @@ ; RuleActionStmt: InsertStmt + | SelectStmt | UpdateStmt | DeleteStmt | NotifyStmt