From e5bdc54f041f18a7db32575b51807f5831dbe30b Mon Sep 17 00:00:00 2001 From: Joel Natividad <1980690+jqnatividad@users.noreply.github.com> Date: Mon, 24 Jun 2024 16:01:13 -0400 Subject: [PATCH] `docs`: update deeplinks to polars 0.41.2 [skip ci] --- README.md | 2 +- src/cmd/sqlp.rs | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 7d3dbd834..82f005f41 100644 --- a/README.md +++ b/README.md @@ -93,7 +93,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.1](https://img.shields.io/badge/polars-0.41.1-blue)](https://github.com/pola-rs/polars/releases/tag/rs-0.41.0) engine. +🐻‍❄️: command powered by [![polars 0.41.2](https://img.shields.io/badge/polars-0.41.2-blue)](https://github.com/pola-rs/polars/releases/tag/rs-0.41.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 df11daf46..aa2838623 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.41.0/crates/polars-sql/src/functions.rs and -https://github.com/pola-rs/polars/blob/rs-0.41.0/crates/polars-sql/src/keywords.rs. +https://github.com/pola-rs/polars/blob/rs-0.41.2/crates/polars-sql/src/functions.rs and +https://github.com/pola-rs/polars/blob/rs-0.41.2/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.