mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-22 22:43:03 +01:00
Fix CORE-6068 - Server hangs when compiling big package with error.
This commit is contained in:
parent
9680dec41e
commit
8e228e9440
@ -3153,9 +3153,9 @@ proc_statements
|
||||
|
||||
%type <stmtNode> proc_statement
|
||||
proc_statement
|
||||
: simple_proc_statement ';'
|
||||
: simple_proc_statement ';' [YYVALID;]
|
||||
{ $$ = newNode<LineColumnNode>(YYPOSNARG(1).firstLine, YYPOSNARG(1).firstColumn, $1); }
|
||||
| complex_proc_statement
|
||||
| complex_proc_statement [YYVALID;]
|
||||
{ $$ = newNode<LineColumnNode>(YYPOSNARG(1).firstLine, YYPOSNARG(1).firstColumn, $1); }
|
||||
;
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user