On 2017-09-05 20:15:57 +0300, Yan Pas wrote:
> I'm writing C postgresql module with some psql-functions and global state.
> Do module API provide any init and cleanup functions? If yes then it would
> be fine to see them in "35.9. C-Language Functions" help page."
The relevant doc page is at
https://www.postgresql.org/docs/current/static/xfunc-c.html
what you're looking for is _PG_init(). There effectively is no cleanup
logic, as modules cannot be unloaded anymore.
- Andres