| 778 | } |
| 779 | |
| 780 | Status RecordBatch::Validate() const { |
| 781 | return ValidateBatch(*this, /*full_validation=*/false); |
| 782 | } |
| 783 | |
| 784 | Status RecordBatch::ValidateFull() const { |
| 785 | return ValidateBatch(*this, /*full_validation=*/true); |
nothing calls this directly
no test coverage detected