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

Method DebugString

be/src/exprs/scalar-expr.cc:307–315  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

305}
306
307string ScalarExpr::DebugString() const {
308 // TODO: implement partial debug string for member vars
309 stringstream out;
310 out << " type=" << type_.DebugString();
311 if (!children_.empty()) {
312 out << " children=" << DebugString(children_);
313 }
314 return out.str();
315}
316
317string ScalarExpr::DebugString(const vector<ScalarExpr*>& exprs) {
318 stringstream out;

Callers

nothing calls this directly

Calls 4

DebugStringFunction · 0.70
emptyMethod · 0.45
strMethod · 0.45
sizeMethod · 0.45

Tested by

no test coverage detected