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