We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a68965 commit f5fd777Copy full SHA for f5fd777
1 file changed
src/writer/vegalite/layer.rs
@@ -404,7 +404,7 @@ fn aesthetic_varies_within_groups(
404
}
405
406
// Slice the series for this group and check uniqueness
407
- let segment = series.slice(start as i64, (end - start) as usize);
+ let segment = series.slice(start as i64, end - start);
408
let n_unique = segment.n_unique().map_err(|e| {
409
GgsqlError::InternalError(format!("Failed to count unique values: {}", e))
410
})?;
0 commit comments