PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ postgis_scripts_released()

Datum postgis_scripts_released ( PG_FUNCTION_ARGS  )

Definition at line 196 of file lwgeom_functions_basic.c.

References PG_FUNCTION_INFO_V1(), POSTGIS_LIB_VERSION, and postgis_uses_stats().

Referenced by postgis_lib_build_date().

197 {
198  char ver[64];
199  text *result;
200 
201  snprintf(ver, 64, "%s r%d", POSTGIS_LIB_VERSION, POSTGIS_SVN_REVISION);
202  ver[63] = '\0';
203 
204  result = cstring2text(ver);
205  PG_RETURN_TEXT_P(result);
206 }
#define POSTGIS_LIB_VERSION
Definition: sqldefines.h:12
Here is the call graph for this function:
Here is the caller graph for this function: