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

Method DebugString

be/src/exprs/scalar-fn-call.cc:563–568  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

561#pragma pop_macro("GET_VAL_INTERPRETED")
562
563string ScalarFnCall::DebugString() const {
564 stringstream out;
565 out << "ScalarFnCall(udf_type=" << fn_.binary_type << " location=" << fn_.hdfs_location
566 << " symbol_name=" << fn_.scalar_fn.symbol << ScalarExpr::DebugString() << ")";
567 return out.str();
568}
569
570bool ScalarFnCall::IsInterpretable() const {
571 return fn_.binary_type != TFunctionBinaryType::IR && NumFixedArgs() <= MAX_INTERP_ARGS;

Callers

nothing calls this directly

Calls 2

DebugStringFunction · 0.70
strMethod · 0.45

Tested by

no test coverage detected