| 515 | } |
| 516 | |
| 517 | std::string BaseVector::toSummaryString() const { |
| 518 | std::stringstream out; |
| 519 | out << "[" << encoding() << " " << type_->toString() << ": " << length_ |
| 520 | << " elements, "; |
| 521 | if (!nulls_) { |
| 522 | out << "no nulls"; |
| 523 | } else { |
| 524 | out << countNulls(nulls_, 0, length_) << " nulls"; |
| 525 | } |
| 526 | out << "]"; |
| 527 | return out.str(); |
| 528 | } |
| 529 | |
| 530 | std::string BaseVector::toString(bool recursive) const { |
| 531 | std::stringstream out; |
nothing calls this directly
no test coverage detected