8
0
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:
Adriano dos Santos Fernandes 2019-05-26 19:49:03 -03:00
parent 9680dec41e
commit 8e228e9440

View File

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