#include #include #include #include namespace DB { bool ParserTablePropertiesQuery::parseImpl(Pos & pos, Pos end, ASTPtr & node, String & expected) { Pos begin = pos; ParserWhiteSpaceOrComments ws; ParserString s_exists("EXISTS", true, true); ParserString s_describe("DESCRIBE", true, true); ParserString s_desc("DESC", true, true); ParserString s_show("SHOW", true, true); ParserString s_create("CREATE", true, true); ParserString s_table("TABLE", true, true); ParserString s_format("FORMAT", true, true); ParserString s_dot("."); ParserIdentifier name_p; ASTPtr database; ASTPtr table; ASTPtr format; ASTPtr query_ptr; ws.ignore(pos, end); if (s_exists.ignore(pos, end, expected)) { query_ptr = new ASTExistsQuery; } else if (s_describe.ignore(pos, end, expected) || s_desc.ignore(pos, end, expected)) { query_ptr = new ASTDescribeQuery; } else if (s_show.ignore(pos, end, expected)) { if (!s_create.ignore(pos, end, expected)) { pos = begin; return false; } query_ptr = new ASTShowCreateQuery; } else { return false; } ws.ignore(pos, end); if (!s_table.ignore(pos, end, expected)) return false; ws.ignore(pos, end); if (!name_p.parse(pos, end, table, expected)) return false; ws.ignore(pos, end); if (s_dot.ignore(pos, end, expected)) { database = table; if (!name_p.parse(pos, end, table, expected)) return false; ws.ignore(pos, end); } ws.ignore(pos, end); if (s_format.ignore(pos, end, expected)) { ws.ignore(pos, end); ParserIdentifier format_p; if (!format_p.parse(pos, end, format, expected)) return false; dynamic_cast(*format).kind = ASTIdentifier::Format; ws.ignore(pos, end); } ASTQueryWithTableAndOutput * query = dynamic_cast(&*query_ptr); query->range = StringRange(begin, pos); if (database) query->database = dynamic_cast(*database).name; if (table) query->table = dynamic_cast(*table).name; if (format) { query->format = format; query->children.push_back(format); } node = query_ptr; return true; } }