MCPcopy Create free account
hub / github.com/apache/arrow / total_compressed_bytes

Method total_compressed_bytes

cpp/src/parquet/file_writer.cc:168–176  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

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_) {

Callers

nothing calls this directly

Calls 2

sizeMethod · 0.45

Tested by

no test coverage detected