| 82 | int64_t RowGroupWriter::num_rows() const { return contents_->num_rows(); } |
| 83 | |
| 84 | inline void ThrowRowsMisMatchError(int col, int64_t prev, int64_t curr) { |
| 85 | std::stringstream ss; |
| 86 | ss << "Column " << col << " had " << curr << " while previous column had " << prev; |
| 87 | throw ParquetException(ss.str()); |
| 88 | } |
| 89 | |
| 90 | // ---------------------------------------------------------------------- |
| 91 | // RowGroupSerializer |
no test coverage detected