MCPcopy Create free account
hub / github.com/apache/impala / IsTrue

Function IsTrue

be/src/service/query-options.cc:236–238  ·  view source on GitHub ↗

Return true if the given value is true (case-insensitive) or 1.

Source from the content-addressed store, hash-verified

234
235// Return true if the given value is true (case-insensitive) or 1.
236static bool IsTrue(const string& value) {
237 return iequals(value, "true") || iequals(value, "1");
238}
239
240static Status VerifyExecNodeDebugAction(const TDebugOptions& debug_options) {
241 if (debug_options.action == TDebugAction::DELAY) {

Callers 1

SetQueryOptionMethod · 0.85

Calls 1

iequalsFunction · 0.85

Tested by

no test coverage detected