PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ postgis_scripts_released()

Datum postgis_scripts_released ( PG_FUNCTION_ARGS  )

Definition at line 218 of file lwgeom_functions_basic.c.

219 {
220  char ver[64];
221  text *result;
222 
223  snprintf(ver, 64, "%s %s", POSTGIS_LIB_VERSION, xstr(POSTGIS_REVISION));
224  ver[63] = '\0';
225 
226  result = cstring_to_text(ver);
227  PG_RETURN_TEXT_P(result);
228 }
#define xstr(s)
#define POSTGIS_LIB_VERSION
Definition: sqldefines.h:13

References POSTGIS_LIB_VERSION, and xstr.