MCPcopy Create free account
hub / github.com/BlazingDB/blazingsql / is_join_expression

Function is_join_expression

engine/src/parser/expression_utils.cpp:479–483  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

477bool is_bool(const std::string & token) { return (token == "true" || token == "false"); }
478
479bool is_join_expression(const std::string & token) {
480 static const std::regex re("=[/(][/$][0-9]{1,4},[ ][/$][0-9]{1,4}[/)]");
481 bool ret = std::regex_match(token, re);
482 return ret;
483}
484
485bool is_SQL_data_type(const std::string & token) {
486 static std::vector<std::string> CALCITE_DATA_TYPES = {

Calls

no outgoing calls

Tested by

no test coverage detected