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

Method DebugString

be/src/exprs/agg-fn.cc:187–195  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

185}
186
187string AggFn::DebugString() const {
188 stringstream out;
189 out << "AggFn(op=" << agg_op_;
190 for (ScalarExpr* input_expr : children()) {
191 out << " " << input_expr->DebugString() << ")";
192 }
193 out << ")";
194 return out.str();
195}
196
197string AggFn::DebugString(const vector<AggFn*>& agg_fns) {
198 stringstream out;

Callers 8

GetValueMethod · 0.45
TestDecimalResultTypeMethod · 0.45
CreateLiteralMethod · 0.45
FromUtcMethod · 0.45
ToUtcMethod · 0.45
ToUtcUnambiguousMethod · 0.45
SetDstSlotMethod · 0.45
SerializeOrFinalizeMethod · 0.45

Calls 2

strMethod · 0.45
sizeMethod · 0.45

Tested by 2

TestDecimalResultTypeMethod · 0.36
CreateLiteralMethod · 0.36