Skip to content

Commit

Permalink
deps: bump qsv-stats to 0.22.0 that has a parallel processing optio…
Browse files Browse the repository at this point in the history
…n when computing cardinality
  • Loading branch information
jqnatividad committed Sep 8, 2024
1 parent ad758b0 commit cb1eb60
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ pyo3 = { version = "0.22", features = [
], optional = true }
qsv-dateparser = "0.12"
qsv_docopt = "1.7"
qsv-stats = "0.21"
qsv-stats = "0.22"
qsv_currency = { version = "0.6", optional = true }
qsv-sniffer = { version = "0.10", default-features = false, features = [
"runtime-dispatch-simd",
Expand Down
2 changes: 1 addition & 1 deletion src/cmd/stats.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1458,7 +1458,7 @@ impl Stats {
},
Some(ref mut v) => {
if self.which.cardinality {
cardinality = v.cardinality(column_sorted);
cardinality = v.cardinality(column_sorted, 1);
let mut buffer = itoa::Buffer::new();
mc_pieces.push(buffer.format(cardinality).to_owned());
}
Expand Down

0 comments on commit cb1eb60

Please sign in to comment.