PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ postgis_wagyu_version()

Datum postgis_wagyu_version ( PG_FUNCTION_ARGS  )

Definition at line 27 of file postgis_libprotobuf.c.

28 {
29 #ifndef HAVE_WAGYU
30  PG_RETURN_NULL();
31 #else /* HAVE_WAGYU */
32  const char *ver = libwagyu_version();
33  text *result = cstring_to_text(ver);
34  PG_RETURN_POINTER(result);
35 #endif
36 }