Skip to content

Commit

Permalink
underscore check is already covered
Browse files Browse the repository at this point in the history
  • Loading branch information
lu-zhengda committed Dec 16, 2024
1 parent 6b5187d commit 04609cd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sqllexer_utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@ func isLetter(ch rune) bool {
}

func isAlphaNumeric(ch rune) bool {
return isLetter(ch) || isDigit(ch) || ch == '_'
return isLetter(ch) || isDigit(ch)
}

func isDoubleQuote(ch rune) bool {
Expand Down

0 comments on commit 04609cd

Please sign in to comment.