Skip to content

Commit

Permalink
Formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
m09526 committed May 3, 2024
1 parent c3c72e6 commit 19cc6c5
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions rust/compaction/src/datafusion.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ pub async fn compact(
"Made {} calls to sketch UDF and processed {} rows. Quantile sketch column 0 retained {} out of {} values (K value = {}).",
func.get_invoke_count().to_formatted_string(&Locale::en),
func.get_row_count().to_formatted_string(&Locale::en),
first_sketch.get_num_retained(),
first_sketch.get_n(),
first_sketch.get_k()
first_sketch.get_num_retained().to_formatted_string(&Locale::en),
first_sketch.get_n().to_formatted_string(&Locale::en),
first_sketch.get_k().to_formatted_string(&Locale::en)
);
}

Expand Down

0 comments on commit 19cc6c5

Please sign in to comment.