mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-16 19:32:07 +00:00
alphanumeric as key start
This commit is contained in:
parent
65188a565f
commit
296a19129b
@ -13,7 +13,7 @@ NextState KeyStateHandler::wait(const std::string & file, size_t pos) const
|
||||
while (pos < file.size())
|
||||
{
|
||||
const auto current_character = file[pos];
|
||||
if (isalpha(current_character))
|
||||
if (isalnum(current_character))
|
||||
{
|
||||
return {pos, State::READING_KEY};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user