std::string Result::DebugString()

in src/hbase/client/result.cc [115:134]


std::string Result::DebugString() const {
  std::string ret{"keyvalues="};
  if (IsEmpty()) {
    ret += "NONE";
    return ret;
  }
  ret += "{";
  bool is_first = true;
  for (const auto &cell : cells_) {
    if (is_first) {
      is_first = false;
    } else {
      ret += ", ";
    }
    ret += cell->DebugString();
  }
  ret += "}";

  return ret;
}