Update bison_parser.y

This commit is contained in:
Moritz Eyssen 2018-02-08 16:46:30 +01:00 committed by GitHub
parent e33e6f61f7
commit c43af4b401
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -715,7 +715,7 @@ opt_limit:
| LIMIT ALL { $$ = nullptr; }
| LIMIT NULL { $$ = nullptr; }
| LIMIT ALL OFFSET int_literal { $$ = new LimitDescription(kNoLimit, $4->ival); delete $4; }
| LIMIT NULL OFFSET int_literal { $$ = new LimitDescription(kNoLimit, $4->ival);; delete $4; }
| LIMIT NULL OFFSET int_literal { $$ = new LimitDescription(kNoLimit, $4->ival); delete $4; }
| /* empty */ { $$ = nullptr; }
;