developmentseed / tipg

Simple and Fast Geospatial OGC Features and Tiles API for PostGIS.
https://developmentseed.org/tipg/
MIT License
153 stars 23 forks source link

Add or Clarify Support For Function Overloading #106

Closed aemonm closed 1 year ago

aemonm commented 1 year ago

Currently, it does not look like function overloading is supported. If there are no plans to somehow support overloading soon, it would be nice if this were mentioned in the docs.

vincentsarago commented 1 year ago

done in https://github.com/developmentseed/tipg/pull/107 🙏

as of now we need a unique id for the functions when we register them in the catalog so we can use them as collections (e.g Table or Function). Overloading (so finding the function based on the attribute) might be really hard to achieve so for now the update to the docs is 💯

Thanks