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

Function is_unsupported_binary_op

engine/src/skip_data/utils.cpp:12–17  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

10namespace skip_data {
11
12bool is_unsupported_binary_op(const std::string &test) {
13 const static std::vector<std::string> supported_operators = {
14 "=", ">", ">=", "<", "<=", "+", "-", "AND", "OR"};
15 return std::none_of(supported_operators.begin(), supported_operators.end(),
16 [&test](std::string op) { return op == test; });
17}
18
19
20// Non skip data support exclusion rules:

Callers 1

transformMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected