malloy
malloy copied to clipboard
Malloy is an experimental language for describing data relationships and transformations.
1. A dialect can be marked "experimental" 2. Compiler will error if a connection with an experimental dialect is used without `##! experimental.dialect.DIALECT_NAME` - [ ] Allow tests to use...
The following query produces incorrect results. id2 should always be 1 or 2 but I'm seeing different numbers. ``` run: duckdb.table('malloytest.airports') -> { group_by: faa_region aggregate: airport_count is count() calculate:...
Bumps [ejs](https://github.com/mde/ejs) from 3.1.9 to 3.1.10. Release notes Sourced from ejs's releases. v3.1.10 Version 3.1.10 Commits d3f807d Version 3.1.10 9ee26dd Mocha TDD e469741 Basic pollution protection 715e950 Merge pull request...
### What happens? Try running ecommerce dashboard ### To Reproduce Try running ecommerce dashboard @lloydtabb ### OS: all ### Malloy Client: all ### Malloy Client Version: all ### Database Connection:...
### What happens? ``` run: duckdb.table('output.parquet') -> { select: * } ``` is not highlighted as incorrect by the IDE. Bigger opportunity imo: https://docs.malloydata.dev/documentation/language/sql_to_malloy does not explain what the equivalent...
Apparently that isn't an operator for bigquery so we need to introduce dialect specific translation for `%`
### What happens? When running a query with a literal containing a decimal point, the number is parsed as if the decimal point wasn't there at all. ### To Reproduce...
### What happens? The links in the Resources/Documentation section all show a 404 page. ### To Reproduce Click on any of the three links in the Resources/Documentation section. ### OS:...
``` measure: x is (elevation + elevation).sum ``` is illegal. We get a weird error when parsing and we should probably recommend the syntax ``` measure: x is source.sum(elevation+elevation) ```