Skip to content

Commit

Permalink
fix compilation
Browse files Browse the repository at this point in the history
  • Loading branch information
lkarthee committed Jun 1, 2024
1 parent ae29cb6 commit fcd8678
Show file tree
Hide file tree
Showing 8 changed files with 173 additions and 143 deletions.
118 changes: 75 additions & 43 deletions native/explorer/Cargo.lock

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

4 changes: 2 additions & 2 deletions native/explorer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ object_store = { version = "0.9", default-features = false, optional = true }
mimalloc = { version = "*", default-features = false }

[dependencies.polars]
version = "0.39"
version = "0.40"
default-features = false
features = [
"abs",
Expand Down Expand Up @@ -86,7 +86,7 @@ features = [
]

[dependencies.polars-ops]
version = "0.39"
version = "0.40"
features = ["abs", "ewma", "cum_agg", "cov"]

[features]
Expand Down
4 changes: 1 addition & 3 deletions native/explorer/src/dataframe.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,9 +315,7 @@ pub fn df_sort_with(
.with_order_descendings(directions);

let new_df = if groups.is_empty() {
df.lazy()
.sort_by_exprs(exprs, sort_options)
.collect()?
df.lazy().sort_by_exprs(exprs, sort_options).collect()?
} else {
df.group_by_stable(groups)?.apply(|df| {
df.lazy()
Expand Down
Loading

0 comments on commit fcd8678

Please sign in to comment.