Skip to content

Commit

Permalink
issue fixed AlaSQL#1740
Browse files Browse the repository at this point in the history
  • Loading branch information
akashyadav24 committed Aug 22, 2023
1 parent 900adbf commit ee1f3d3
Show file tree
Hide file tree
Showing 3 changed files with 26,743 additions and 2,494 deletions.
2 changes: 1 addition & 1 deletion src/alasqlparser.jison
Original file line number Diff line number Diff line change
Expand Up @@ -354,7 +354,7 @@ Literal
else $$ = $1.toLowerCase();
}
| BRALITERAL
{ $$ = doubleq($1.substr(1,$1.length-2)); }
{ $$ = {val:doubleq($1.substr(1,$1.length-2)), wrap:$1.substr(0,1)}; }
| error NonReserved
{ $$ = $2.toLowerCase() }
;
Expand Down
Loading

0 comments on commit ee1f3d3

Please sign in to comment.