fix: report row group rows correctly

pull/24376/head
Edd Robinson 2021-04-27 16:10:53 +01:00 committed by kodiakhq[bot]
parent 97f2d7acad
commit 5e3d43d62f
1 changed files with 1 additions and 1 deletions

View File

@ -248,7 +248,7 @@ impl Chunk {
let row_group = RowGroup::from(table_data);
let table_name = table_name.into();
let rows = self.rows();
let rows = row_group.rows();
let rg_size = row_group.size();
let compression = format!("{:.2}%", (rg_size as f64 / rb_size as f64) * 100.0);
let chunk_id = self.id();