PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ gserialized_spgist_config_3d()

PGDLLEXPORT Datum gserialized_spgist_config_3d ( PG_FUNCTION_ARGS  )

Definition at line 372 of file gserialized_spgist_3d.c.

373 {
374  spgConfigOut *cfg = (spgConfigOut *)PG_GETARG_POINTER(1);
375 
376  Oid boxoid = InvalidOid;
377  postgis_initialize_cache(fcinfo);
378  boxoid = postgis_oid(BOX3DOID);
379 
380  cfg->prefixType = boxoid;
381  cfg->labelType = VOIDOID; /* We don't need node labels. */
382  cfg->leafType = boxoid;
383  cfg->canReturnData = false;
384  cfg->longValuesOK = false;
385 
386  PG_RETURN_VOID();
387 }

References rtgdalraster::cfg.