Advance the vendored MEOS surface to master and generate the raquet UDFs - #32
Merged
estebanzimanyi merged 1 commit intoJul 9, 2026
Conversation
Re-vendor the catalog (tools/meos-idl.json, 4493 -> 4529 functions) and the JMEOS jar to MobilityDB master, and point the CI libmeos build at the same commit (replacing the retired ecosystem pin). The build enables the RASTER family with its GDAL dependency, and QUADBIN. The refreshed catalog and jar carry the raster surface, but the generator had no marshalling rule for the raquet type, so every raquet function was excluded (arg:Raquet *). Add raquet to the generator's parse and serialize maps, mirroring the other varlena types (raquet_in / raquet_out) -- the raquet text form is its hex-WKB. The generated surface now includes the raquet UDFs (read, accessors, I/O).
estebanzimanyi
force-pushed
the
feat/refresh-catalog-raster
branch
from
July 9, 2026 14:01
cba5bb1 to
10ed4f9
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
The vendored catalog and JMEOS jar trailed MobilityDB master, so the Spark UDF surface was missing the raster (raquet) family and the other recent additions.
tools/meos-idl.json(4493 → 4529 functions) andlibs/JMEOS.jarto MobilityDB master, and point the CI libmeos build at the same commit (replacing the retired ecosystem pin). The build enables theRASTERfamily with its GDAL dependency (libgdal-dev), andQUADBIN.raquettype, so every raquet function was excluded (arg:Raquet *). Addraquetto the generator's parse and serialize maps, mirroring the other varlena types (raquet_in/raquet_out— the raquet text form is its hex-WKB).The generated surface now includes the raquet UDFs (read, accessors, I/O, hex-WKB). Verified locally:
mvn clean test-compilesucceeds and the regenerated surface registers the raquet UDFs; the full runtime test against a RASTER-enabled libmeos runs in CI.