Re: PostgreSQL, C-Extension, calling other Functions

2019-10-11 Thread Andrew Gierth
> "Stefan" == Stefan Wolf writes: Stefan> I´ve written some PostgreSQL C-Extensions (for the first Stefan> time...) and they work as expected. Stefan> But now I want to call other functions from inside the Stefan> C-Extensions (but not via SPI_execute), for example Stefan> "regexp_match

Re: PostgreSQL, C-Extension, calling other Functions

2019-10-11 Thread Pavel Stehule
Hi pá 11. 10. 2019 v 10:15 odesílatel Stefan Wolf napsal: > I´ve written some PostgreSQL C-Extensions (for the first time...) and they > work as expected. > > But now I want to call other functions from inside the C-Extensions (but > not > via SPI_execute), > for example "regexp_match()" or from

PostgreSQL, C-Extension, calling other Functions

2019-10-11 Thread Stefan Wolf
I´ve written some PostgreSQL C-Extensions (for the first time...) and they work as expected. But now I want to call other functions from inside the C-Extensions (but not via SPI_execute), for example "regexp_match()" or from other extensions like PostGIS "ST_POINT" etc... I think "fmgr" is the ke