mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-24 06:03:02 +01:00
Fix server crash when SKIP syntax with braces used (SF 747567). Really strange, but problem does not affect Linux version. This is why it escaped my testing
This commit is contained in:
parent
31b9eadbe1
commit
e0eab37746
@ -2904,7 +2904,7 @@ first_clause : FIRST long_integer begin_limit
|
|||||||
skip_clause : SKIP long_integer
|
skip_clause : SKIP long_integer
|
||||||
{ $$ = MAKE_constant ((STR) $2, CONSTANT_SLONG); }
|
{ $$ = MAKE_constant ((STR) $2, CONSTANT_SLONG); }
|
||||||
| SKIP '(' end_limit value ')'
|
| SKIP '(' end_limit value ')'
|
||||||
{ $$ = $3; }
|
{ $$ = $4; }
|
||||||
| SKIP parameter
|
| SKIP parameter
|
||||||
{ $$ = $2; }
|
{ $$ = $2; }
|
||||||
;
|
;
|
||||||
|
Loading…
Reference in New Issue
Block a user