radekaadek
radekaadek
I have tested the module manually and it loads in Flink but the functions are not usable. I can call `LOAD MODULE sedona` and after calling `SHOW FUNCTIONS` I get...
When I call `SELECT ST_Point(2,2)` It produces ugly jobs where it casts the 2s from `NUMERIC` to `DOUBLE`: `SELECT `ST_Point`(CAST(2 AS DOUBLE), CAST(2 AS DOUBLE))` Other than that, I'll work...
I have been looking through the code and it seems to me that either there was a mistake or I'm missing something because all of the functions in `flink/src/main/java/org/apache/sedona/flink/expressions/Functions.java` have...
I guess the reason that it works now is because Flink automatically infers that a serializer that was passed in when that type was created. I suppose I would need...
I have added some tests for the module and made the functions use the custom serializer. I still don't know how to verify that the functions in the module are...
@jiayuasu I solved the issue by making the serializer make some files on my machine, and it did, but I don't know how you would like see it actually being...
Hi @Imbruced, any updates?
I use the Apache Flink through a custom Docker image that I base on of the [official image](https://hub.docker.com/_/flink) to which I add jar dependencies for the connectors and plugins I...
Ok, thanks, I'll try to come up with a solution on the weekend.
I have run into some issues and made a PR.