Skip to content

Commit

Permalink
Merge pull request #2051 from jqnatividad/deps-polars-0.42.0
Browse files Browse the repository at this point in the history
`deps`: bump polars from 0.41.3 to 0.42.0
  • Loading branch information
jqnatividad authored Aug 15, 2024
2 parents f715317 + 43380cc commit d907d73
Show file tree
Hide file tree
Showing 4 changed files with 69 additions and 49 deletions.
108 changes: 64 additions & 44 deletions 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 Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ mlua = { version = "0.9", features = [
num_cpus = "1"
odht = "0.3"
phf = { version = "0.11", features = ["macros"], optional = true }
polars = { version = "0.41", features = [
polars = { version = "0.42", features = [
"asof_join",
"avro",
"avx512",
Expand Down Expand Up @@ -266,7 +266,7 @@ local-encoding = { git = "https://github.com/slonopotamus/local-encoding-rs", br
# It's qsv's policy to use the latest release of py-polars
# to take advantage of Polars' latest features and fixes.
# polars = { git = "https://github.com/pola-rs/polars", tag = "py-1.4.1" }
polars = { git = "https://github.com/pola-rs/polars", rev = "9dd9569" }
# polars = { git = "https://github.com/pola-rs/polars", rev = "9dd9569" }


[features]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,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.41.3](https://img.shields.io/badge/polars-0.41.3-blue)](https://github.com/pola-rs/polars/releases/tag/rs-0.41.3) engine at the [`py-1.4.1`](https://github.com/pola-rs/polars/releases/tag/py-1.4.1) tag.
πŸ»β€β„οΈ: command powered by [![polars 0.42.0](https://img.shields.io/badge/polars-0.42.0-blue)](https://github.com/pola-rs/polars/releases/tag/rs-0.42.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/rs-0.41.3/crates/polars-sql/src/functions.rs and
https://github.com/pola-rs/polars/blob/rs-0.41.3/crates/polars-sql/src/keywords.rs.
https://github.com/pola-rs/polars/blob/rs-0.42.0/crates/polars-sql/src/functions.rs and
https://github.com/pola-rs/polars/blob/rs-0.42.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

0 comments on commit d907d73

Please sign in to comment.