PostGIS  3.0.6dev-r@@SVN_REVISION@@

◆ gserialized_spgist_config_nd()

PGDLLEXPORT Datum gserialized_spgist_config_nd ( PG_FUNCTION_ARGS  )

Definition at line 267 of file gserialized_spgist_nd.c.

268 {
269  spgConfigOut *cfg = (spgConfigOut *)PG_GETARG_POINTER(1);
270  Oid boxoid = InvalidOid;
271  postgis_initialize_cache(fcinfo);
272  boxoid = postgis_oid(GIDXOID);
273 
274  cfg->prefixType = boxoid;
275  cfg->labelType = VOIDOID; /* We don't need node labels. */
276  cfg->leafType = boxoid;
277  cfg->canReturnData = false;
278  cfg->longValuesOK = false;
279 
280  PG_RETURN_VOID();
281 }

References rtgdalraster::cfg.