Skip to content
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
55 changes: 25 additions & 30 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 @@ -334,10 +334,10 @@ sled = { git = "https://github.com/dathere/sled", branch = "v0.34.7-bumped-parki
# (e.g. py-1.19.0:52ea381 to indicate that we are Python Polars 1.19.0,
# and the commit hash 52ea381)
# ================================
# QSV_POLARS_REV=py-1.25.2
polars = { git = "https://github.com/pola-rs/polars", tag = "py-1.25.2" }
# QSV_POLARS_REV=py-1.26.0
polars = { git = "https://github.com/pola-rs/polars", tag = "py-1.26.0" }
# polars = { git = "https://github.com/pola-rs/polars", rev = "de1d9d5" }
polars-ops = { git = "https://github.com/pola-rs/polars", tag = "py-1.25.2" }
polars-ops = { git = "https://github.com/pola-rs/polars", tag = "py-1.26.0" }
# polars-ops = { git = "https://github.com/pola-rs/polars", rev = "de1d9d5" }

[features]
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,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.46.0](https://img.shields.io/badge/polars-0.46.0-blue) at the py-1.25.2 tag](https://github.com/pola-rs/polars/releases/tag/py-1.25.2).
🐻‍❄️: command powered by [![polars 0.46.0](https://img.shields.io/badge/polars-0.46.0-blue) at the py-1.26.0 tag](https://github.com/pola-rs/polars/releases/tag/py-1.26.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
5 changes: 3 additions & 2 deletions tests/test_sqlp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -937,14 +937,15 @@ fn sqlp_boston311_explain() {
let expected_begin = r#"Logical Plan
"SORT BY [col(""avg_tat""), col(""ward"")]"
AGGREGATE
" [[(col(""closed_dt"")) - (col(""open_dt""))].mean().strict_cast(Float64).alias(""avg_tat"")] BY [col(""ward"")] FROM"
" [[(col(""closed_dt"")) - (col(""open_dt""))].mean().strict_cast(Float64).alias(""avg_tat"")] BY [col(""ward"")]"
FROM
" simple π 4/4 [""ward"", ""closed_dt"", ""open_dt"", ... 1 other column]"
Csv SCAN ["#;
assert!(got.starts_with(expected_begin));

let expected_end = r#"boston311-100.csv]
PROJECT 4/29 COLUMNS
" SELECTION: [(col(""case_status"")) == (String(Closed))]""#;
" SELECTION: [(col(""case_status"")) == (""Closed"")]""#;
assert!(got.ends_with(expected_end));
}

Expand Down
Loading