Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

deps: bump to polars 0.43.0 #2130

Merged
merged 1 commit into from
Sep 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 57 additions & 38 deletions Cargo.lock

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

6 changes: 3 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ mlua = { version = "0.9", features = [
num_cpus = "1"
odht = "0.3"
phf = { version = "0.11", features = ["macros"], optional = true }
polars = { version = "0.42", features = [
polars = { version = "0.43", features = [
"asof_join",
"avro",
"avx512",
Expand Down Expand Up @@ -303,9 +303,9 @@ local-encoding = { git = "/~https://github.com/slonopotamus/local-encoding-rs", br
# BUILD NOTE: Be sure to set QSV_POLARS_REV below to the latest commit short hash or tag
# of polars/py-polars before building qsv. This allows us to show the polars rev/tag in --version.
# if we are using a release version of Rust Polars, leave QSV_POLARS_REV empty
# QSV_POLARS_REV=fe04390
# QSV_POLARS_REV=
# polars = { git = "/~https://github.com/pola-rs/polars", tag = "py-1.6.0" }
polars = { git = "/~https://github.com/pola-rs/polars", rev = "fe04390" }
# polars = { git = "/~https://github.com/pola-rs/polars", rev = "fe04390" }

[features]
default = ["mimalloc"]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
😣: uses additional memory proportional to the cardinality of the columns in the CSV.
🧠: expensive operations are memoized with available inter-session Redis/Disk caching for fetch commands.
🗄️: [Extended input support](#extended-input-support).
🐻‍❄️: command powered by [![polars 0.42.0 at 6076421 rev](https://img.shields.io/badge/polars-0.42.0-blue) at 6076421 revision](/~https://github.com/pola-rs/polars/tree/6076421698aced51aaca31ae6f1cbcdcd028dc73).
🐻‍❄️: command powered by [![polars 0.43.0](https://img.shields.io/badge/polars-0.43.0-blue)](/~https://github.com/pola-rs/polars/releases/tag/rs-0.43.0).
🤖: command uses Natural Language Processing & General AI techniques.
🏎️: multithreaded and/or faster when an index (📇) is available.
🚀: multithreaded even without an index.
Expand Down
4 changes: 2 additions & 2 deletions src/cmd/sqlp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Polars SQL is a SQL dialect, converting SQL queries to fast Polars LazyFrame exp
(see https://docs.pola.rs/user-guide/sql/intro/).

For a list of SQL functions and keywords supported by Polars SQL, see
/~https://github.com/pola-rs/polars/blob/py-1.6.0/crates/polars-sql/src/functions.rs and
/~https://github.com/pola-rs/polars/blob/py-1.6.0/crates/polars-sql/src/keywords.rs.
/~https://github.com/pola-rs/polars/blob/rs-0.43.0/crates/polars-sql/src/functions.rs and
/~https://github.com/pola-rs/polars/blob/rs-0.43.0/crates/polars-sql/src/keywords.rs.
https://docs.pola.rs/py-polars/html/reference/sql/index.html also provides a more readable
version of the SQL functions and keywords, though be aware that it's for the Python version
of Polars, so there will be some minor syntax differences.
Expand Down
Loading