| 166 | } |
| 167 | |
| 168 | String ProgressValues::toString() const |
| 169 | { |
| 170 | return fmt::format( |
| 171 | "progress[read_rows={}, read_bytes={}, read_raw_bytes={}, written_rows={}, written_bytes={}, disk_cache_read_bytes={}, " |
| 172 | "total_rows_to_read={}, " |
| 173 | "total_raw_bytes_to_read={}]", |
| 174 | read_rows, |
| 175 | read_bytes, |
| 176 | read_raw_bytes, |
| 177 | written_rows, |
| 178 | written_bytes, |
| 179 | disk_cache_read_bytes, |
| 180 | total_rows_to_read, |
| 181 | total_raw_bytes_to_read); |
| 182 | } |
| 183 | |
| 184 | bool Progress::incrementPiecewiseAtomically(const Progress & rhs) |
| 185 | { |
no outgoing calls
no test coverage detected