| 166 | int current_column() const override { return metadata_->current_column(); } |
| 167 | |
| 168 | int64_t total_compressed_bytes() const override { |
| 169 | int64_t total_compressed_bytes = 0; |
| 170 | for (size_t i = 0; i < column_writers_.size(); i++) { |
| 171 | if (column_writers_[i]) { |
| 172 | total_compressed_bytes += column_writers_[i]->total_compressed_bytes(); |
| 173 | } |
| 174 | } |
| 175 | return total_compressed_bytes; |
| 176 | } |
| 177 | |
| 178 | int64_t total_bytes_written() const override { |
| 179 | if (closed_) { |
nothing calls this directly
no test coverage detected