diff --git a/README.md b/README.md index 71587f97f..0c30ee413 100644 --- a/README.md +++ b/README.md @@ -92,7 +92,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.39.1](https://img.shields.io/badge/polars-0.39.1-blue)](https://github.com/pola-rs/polars/releases/tag/rs-0.39.1) engine. +🐻‍❄️: command powered by [![polars 0.39.2](https://img.shields.io/badge/polars-0.39.2-blue)](https://github.com/pola-rs/polars/releases/tag/rs-0.39.2) engine. 🤖: command uses Natural Language Processing & General AI techniques. 🏎️: multithreaded and/or faster when an index (📇) is available. 🚀: multithreaded even without an index. diff --git a/src/cmd/sqlp.rs b/src/cmd/sqlp.rs index 147239a9e..f65bd7350 100644 --- a/src/cmd/sqlp.rs +++ b/src/cmd/sqlp.rs @@ -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.39.1/crates/polars-sql/src/functions.rs -https://github.com/pola-rs/polars/blob/rs-0.39.1/crates/polars-sql/src/keywords.rs and +https://github.com/pola-rs/polars/blob/rs-0.39.2/crates/polars-sql/src/functions.rs +https://github.com/pola-rs/polars/blob/rs-0.39.2/crates/polars-sql/src/keywords.rs and https://github.com/pola-rs/polars/issues/7227 Returns the shape of the query result (number of rows, number of columns) to stderr.