prql icon indicating copy to clipboard operation
prql copied to clipboard

PRQL is a modern language for transforming data — a simple, powerful, pipelined SQL replacement

Results 352 prql issues
Sort by recently updated
recently updated
newest added

### What's up? "We’d like to make it easier to try PRQL. We currently have the playground, which compiles PRQL and runs queries with a DuckDB wasm module, but there’s...

Bumps [oxsecurity/megalinter](https://github.com/oxsecurity/megalinter) from 7.11.1 to 7.12.0. Release notes Sourced from oxsecurity/megalinter's releases. v7.12.0 What's Changed Core Add new logs (at debug level) on each linter activation/deactivation Clean MegaLinter own CVE...

### What's up? From the discussion on #4499, we propose allowing functions to take parameters that are typed by named unions (aka enums, #4038). The core syntax would look like...

language-design

(no rush to merge, up to @eitsupi when to merge...)

This means the `expression` is always up to date, which makes it much more useful. If we spot any problems with this, we can revert it.

This is another way to solve #4830. It places the `git config ... --add safe.directory ...` command into a shell script (_post\_create.sh_) within the _.devcontainer_ directory. It gets invoked by...

### What happened? It compile a query but `a` is no where in the output. It probably shouldn't compile at all. ### PRQL input ```elm from foo derive { a...

language-design

@snth recently [expressed an opinion](https://github.com/PRQL/prql/pull/4750#issuecomment-2233234666) that relation aliases in PRQL are mistake and should be removed By relational aliases we mean the name `x` in following queries: ```elm from x...

language-design

This proposes to adjust how aliases are formatted. Currently we include a space around `=`, which means we get the quite reasonable: ```elm sum_gross_cost = sum gross_cost ``` ...but also...

### What happened? Deriving columns with same name as existing results in confusing or wrong output. ![image](https://github.com/user-attachments/assets/b6f15c67-2895-43fd-9bdc-6aa3571d2351) ![image](https://github.com/user-attachments/assets/2d593cf0-c93d-4af8-ba05-0c59b8ef313b) ### PRQL input ```elm from invoices derive { total = invoices.total *...

bug