ZIP
WinGet
PRQL compiler CLI - prqlc
PRQL Developers · 0.11.1 · x64
Before deploying, verify this file with VirusTotal ↗
Silent Commands
Distributed as a ZIP archive — extract the contents and run the executable directly. No installer is included.
File Identity
Filename
prqlc-v0.11.1-x86_64-pc-windows-msvc.zip
Signature
Status
Upload installer to verify signature
Installer Selection
WinGet Package
Package ID
PRQL.prqlc
Version
0.11.1
Description
prqlc serves as a CLI for the PRQL compiler.
License
APACHE-2.0
↗
Homepage
https://github.com/PRQL/prql
Installer URL
https://github.com/PRQL/prql/releases/download/0.11.1/prqlc-v0.11.1-x86_64-pc-windows-msvc.zip
Upgrade Behavior
install(Install over existing)
Release Notes
- Infer the type of array literals to be the union of types of its items. (@aljazerzen, #3989)
- prql module is added and the prql_version function is renamed to the prql.version function. The old prql_version function is deprecated and will be removed in the future release. (@eitsupi, #4006)
- Do not compile to DISTINCT ON when take n is used with group for the targets clickhouse, duckdb and postgres. (@PrettyWood, #3988)
- Fix take n rows for mssql dialect by switching from TOP to FETCH (@Pret…