PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ RASTER_lib_version()

Datum RASTER_lib_version ( PG_FUNCTION_ARGS  )

Definition at line 45 of file rtpg_utility.c.

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

46 {
47  char ver[64];
48  text *result;
49 
50  snprintf(ver, 64, "%s r%d", POSTGIS_LIB_VERSION, POSTGIS_SVN_REVISION);
51  ver[63] = '\0';
52 
53  result = cstring2text(ver);
54  PG_RETURN_TEXT_P(result);
55 }
#define POSTGIS_LIB_VERSION
Definition: sqldefines.h:12
Here is the call graph for this function: