| 782 | } |
| 783 | |
| 784 | RX_ALWAYS_INLINE static bool isCondition(std::string_view text) noexcept { |
| 785 | return text == "="sv || text == "=="sv || text == "<>"sv || iequals(text, "is"sv) || text == ">"sv || text == ">="sv || text == "<"sv || |
| 786 | text == "<="sv || iequals(text, "in"sv) || iequals(text, "range"sv) || iequals(text, "like"sv) || iequals(text, "allset"sv); |
| 787 | } |
| 788 | |
| 789 | Query SQLParser::parseSubQuery(Tokenizer& parser) { |
| 790 | Query subquery; |
no test coverage detected