-
This model
```
source: users is table('malloy-data.ecomm.users'){
primary_key: id
where: state = 'California' | 'New York'
}
source: order_items is table('malloy-data.ecomm.order_items'){
…
-
With a query along the lines of
```
explore 'malloy-303216.fluidstate.items'
| reduce
category
item_count is count()
top_items is (reduce
top 5
item
item_count is coun…
-
Any plans or i can build one with guidance...
-
https://github.com/looker-open-source/malloy
https://github.com/julianhyde/morel
-
It would be great if outside contributors can get all tests to pass locally. Because the imdb dataset is not public (as discussed [here](https://github.com/looker-open-source/malloy/issues/443#issueco…
-
This would allow people to prepare results with Malloy and then use/present/share them elsewhere easily.
Likely need to think through how this plays with Limits.
-
The data in this test can be found by cloning
```
git clone git@github.com:lloydtabb/imdb_malloy.git
make
```
It seems there is a bug in DISTINCTing. Not sure exactly where.
```
SELECT
…
-
In SQL, creating date objects is a mixture of:
- A string `'2020-01-01'`
- `DATE(2016, 12, 25)` — BQ
- `make_date(year int, month int, day int)` — Postgres
The strings are dynamically typed so t…
-
Given this:
```
source: flights is table('malloy-data.faa.flights'){
measure: flight_count is count()
}
query: flights_base is flights -> {
aggregate: flight_count
nest: main_query is {…
-
Given this:
```
query: table('public.HolidayEvent') -> {
project: id
limit: 10
}
```
The query run fails with the error `relation public.holidayevent` does not exist.
To support case…