PostGIS 3.7.0dev-r@@SVN_REVISION@@
Loading...
Searching...
No Matches

◆ rt_pg_options()

static char * rt_pg_options ( const char *  varname)
static

Definition at line 252 of file rtpostgis.c.

253{
254 char optname[128];
255 char *optvalue;
256 snprintf(optname, 128, "postgis.%s", varname);
257 /* GetConfigOptionByName(name, found_name, missing_ok) */
258 optvalue = GetConfigOptionByName(optname, NULL, true);
259 if (optvalue && strlen(optvalue) == 0)
260 return NULL;
261 else
262 return optvalue;
263}

Referenced by _PG_init().

Here is the caller graph for this function: