jonathanmaw

Results 19 issues of jonathanmaw

Hi, I've been trying to use the vmouse module (on a Jetson, kernel version approximately 4.0.0), and I cannot get the cursor to move (though the cursor does appear, and...

Hi, I've been trying to use the DLT control interface to request that the DLT daemon sync its logs (using `dlt_client_send_ctrl_msg()` with a `DltServiceOfflineLogstorage` payload), but I recently noticed that...

question

`Morphir.SDK.Aggregate.groupBy` takes an argument called `getKey` to specify the columns to group by. This can be either: * a single fieldFunction (implemented) * A tuple of keys constructed with the...

**Describe the bug** If the java version installed is java 18 (e.g. `java -version` prints `openjdk version "18.0.2.1" 2022-08-18`). Then when `gulp test` or `mill spark.test` (from tests-integration) are run,...

task

I created the branch https://github.com/CodethinkLabs/morphir-elm/tree/jonathanmaw/inline-letdef-ordering which adds an example that highlights this. From an elm function of the form: ``` testLetDef : List AntiqueSubset -> List AntiqueSubset testLetDef source =...

As decided in https://github.com/finos/morphir-elm/issues/799#issuecomment-1193923862, this should be solvable by case expressions (like SQL), or window functions.

Context === Our "old" tests involve: * Write elm code that describes the functionality you want to test * Run morphir to convert it into Spark code * Run a...

i.e. elm code of the following: ``` source |> List.map .fieldName |> List.sum ``` This depends on #798

The Spark backend currently only handles functions that have Lists as arguments (https://github.com/finos/morphir-elm/blob/5c0c516169914792291f68f7e99a25776009b160/src/Morphir/Spark/Backend.elm#L219). This is because it is assumed that every Spark function takes a dataframe as an argument and...

There are times when a query will aggregate multiple values at once, e.g. ``` source = [{cost=1, weight=2}, {cost=3, weight=4}] testMultiple source = [{ lightest = source |> List.map .weight...