#include #include #include #include /// strncmp, strncasecmp namespace DB { ParserKeyword::ParserKeyword(const char * s_) : s(s_) { } const char * ParserKeyword::getName() const { return s; } bool ParserKeyword::parseImpl(Pos & pos, ASTPtr & node, Expected & expected) { if (pos->type != TokenType::BareWord) return false; const char * current_word = s; size_t s_length = strlen(s); if (!s_length) throw Exception("Logical error: keyword cannot be empty string", ErrorCodes::LOGICAL_ERROR); const char * s_end = s + s_length; while (true) { if (pos->type != TokenType::BareWord) return false; const char * next_whitespace = find_first_symbols<' ', '\0'>(current_word, s_end); size_t word_length = next_whitespace - current_word; if (word_length != pos->size()) return false; if (strncasecmp(pos->begin, current_word, word_length)) return false; ++pos; if (!*next_whitespace) break; current_word = next_whitespace + 1; } return true; } }