Hi,
When I parse this valid SQL statement:
SELECT */* comment */ FROM table_name
the parser divides */* into two tokens:
- 1st token with
*/ in value and type TYPE_COMMENT
- 2nd token with
* in value and type TYPE_OPERATOR
The expected behavior would be:
- 1st token with
* in value and type TYPE_OPERATOR
- 2nd token with
/* in value and type TYPE_COMMENT
Do you agree on that, and if yes, would you like help on providing a PR?
Thanks a lot
Hi,
When I parse this valid SQL statement:
SELECT */* comment */ FROM table_namethe parser divides
*/*into two tokens:*/in value and type TYPE_COMMENT*in value and type TYPE_OPERATORThe expected behavior would be:
*in value and type TYPE_OPERATOR/*in value and type TYPE_COMMENTDo you agree on that, and if yes, would you like help on providing a PR?
Thanks a lot