malloy
malloy copied to clipboard
Malloy is an experimental language for describing data relationships and transformations.
### What happens? I think I'd like the results to always be displayed in the same window/doc, instead of it creating new ones each time. Perhaps a Cmd+click on the...
### What happens? When you're measuring something with a group_by, the count is using the x-axis for the column chart - which makes it difficult to read. Folks are more...
In VSCode I would like to be able to run a SQL block. We should also allow this from malloy.ts. The use case here are sql blocks for transformation. ```...
I have a query in a source that uses the `declare` keyword (`sales_summary`), and I'm trying to run the query on unaggregated data, and then re-use it in a nest,...
We're stuck updating the textmate grammar in 2+ places because it's not in the Malloy package. We should probably just move it in...
- [ ] `run:` should show up as a keyword - [ ] annotations should be below the Run Query code lens - [x] add tag `percent` and `percentage` for...
This works ... ``` source: d is duckdb.sql("select 1 as num, 'a' as str") run: d -> { where: num = 1 and str ? 'a' | 'b' select: *...
``` source: airports is table('duckdb:data/airports.parquet') + { measure: airport_count is count() query: by_elevation is { group_by: elevation is pick '1 Low' when elevation < 100 pick '2 Medium' when elevation...
Maybe we could quickly add a message that might help folks that keep hitting this? If someone tries to use Bigquery DateTime, could we give them a message to help...
I really want to write this. ``` source: raw_title is table('duckdb:data/raw_title.parquet') { rename: startYear is startYear::number } ``` But I have to write this: ``` source: raw_title is table('duckdb:data/raw_title.parquet') {...