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

Method DebugString

be/src/exec/analytic-eval-node.cc:899–912  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

897}
898
899void AnalyticEvalNode::DebugString(int indentation_level, stringstream* out) const {
900 *out << string(indentation_level * 2, ' ');
901 *out << "AnalyticEvalNode("
902 << " window=" << DebugWindowString();
903 if (partition_by_eq_expr_ != nullptr) {
904 *out << " partition_exprs=" << partition_by_eq_expr_->DebugString();
905 }
906 if (order_by_eq_expr_ != nullptr) {
907 *out << " order_by_exprs=" << order_by_eq_expr_->DebugString();
908 }
909 *out << AggFn::DebugString(analytic_fns_);
910 ExecNode::DebugString(indentation_level, out);
911 *out << ")";
912}
913}

Callers 1

OpenMethod · 0.45

Calls 1

DebugStringFunction · 0.50

Tested by

no test coverage detected