Michael Toy
Michael Toy
``` run: bigquery.table('nosuchproject.nosuchrable')-> {select: *} run: postgres.table('nosuchschem.nosuchtable')-> {select: *} ``` The bigquery version of this errors, the postgres version is silent but deadly
this is a code debt problem waiting to happen, whatever problem this is solving, this is not the correct solutions.
This test is implemented by creating a schema and a table with mixed case, and then running some queries against that table in Malloy to make sure that the generated...
If you name a table in a query that exists but you do not have read access to, what should happen is you get an error when the schema is...
There is some cruft here, if we don't care, delete the file, if we do care, fix the tests.
Found this test for an experimental feature we need to kill. ```TypeScript it('group by join - simple group by', async () => { await expect(` run: aircraft->{ group_by: aircraft_models aggregate:...
Possibly because I asked to do something I shouldn't have because I do not understand things model and query ... ``` source: boosterContents is duckdb.table('AllPrintings/setBoosterContents.parquet') extend { join_one: contentWeight is...
``` exceptClause : id | id IS expression ; ``` This would enable the following desired gestures ... ``` run: x -> { select: * { except: name_in_output is name_in_input...
This incorrect code references the x in the input space, in the definition of the pipeline for x. It should give some sort of circular reference error. Instead it generates...
``` run: duckdb.KEWYORD() -> { select: a is someExpression, b is someExpression } ``` Ideas are `connection.table()` or `connection.empty()` or just a connection name can be a source ``` run:...