-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
MySQL Lex 과정에서, emitDot (앞에 붙은 .을 별도 토큰으로 분리) 할 때 identifier의 StopIndex가 잘못 설정되는 문제를 해결합니다. 이를 통해 다음과 같은 쿼리의 InfferedName이 잘못 추론되지 않도록 수정합니다. ```sql SELECT @@GLOBAL.character_set_server,@@GLOBAL.collation_server; -- old inffered name: -- @@GLOBAL.character_set_server, // (뒤에 ,가 붙음) -- @@GLOBAL.collation_server -- new inferred name: -- @@GLOBAL.character_set_server -- @@GLOBAL.collation_server ```
- Loading branch information
1 parent
2600dfb
commit fc9b9c2
Showing
2 changed files
with
6 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters