Can
Can
``` let $fn := function ($a) { $a } return $fn({ "k": 2 "seed": 1 }) ``` `Error [err: SENR0001 ] Serialization error; Functions are not serializable.` The query given...
Firstly, I have moved spotless checks before all other tests so formatting issues can be detected first without wait. Secondly, I have implemented a bash script with automized server tests....
@ghislainfourny You had asked me to investigate the jar size a while ago. I have added a custom assembly descriptor to cleanly specify which files are to be included in...
Ingo's suggestion: >I don't know whether this is "the Java way", but in other languages I would implement this with a [formatter](https://docs.oracle.com/javase/7/docs/api/java/util/Formatter.html). This way, you only need to test *once*...
We have a bunch of static final class objects in BuiltinFunctions Catalog. It looks like defining an Enum type for these would be fitting and it would simplify the code.
[ElementwiseProduct](https://spark.apache.org/docs/2.4.5/ml-features.html#elementwiseproduct) expects a vector as its value within the paramMap. This is different from all other params where param had string values but it 'referred to' a Vector. This time...
- [Interaction](https://spark.apache.org/docs/2.4.5/ml-features.html#interaction) expects one or more vectors to be referenced by its inputCols parameter. It should be possible for the end users to group columns into multiple different vectors, so...
``` let $data := annotate( json-file("./src/main/resources/queries/rumbleML/sample-ml-data-flat.json"), { "label": "integer", "binaryLabel": "integer", "name": "string", "age": "double", "weight": "double", "booleanCol": "boolean", "nullCol": "null", "stringCol": "string", "stringArrayCol": ["string"], "intArrayCol": ["integer"], "doubleArrayCol": ["double"], "doubleArrayArrayCol":...
Components under the package [org.apache.spark.ml.evaluation](https://spark.apache.org/docs/2.4.4/api/java/org/apache/spark/ml/evaluation/package-summary.html) This issue is directly related to #551