PostGIS  3.3.9dev-r@@SVN_REVISION@@

◆ needsSpatialIndex()

static bool needsSpatialIndex ( Oid  funcid,
IndexableFunction idxfn 
)
static

Definition at line 212 of file gserialized_supportfn.c.

213 {
214  const IndexableFunction *idxfns = IndexableFunctions;
215  const char *fn_name = get_func_name(funcid);
216 
217  do
218  {
219  if(strcmp(idxfns->fn_name, fn_name) == 0)
220  {
221  *idxfn = *idxfns;
222  return true;
223  }
224  idxfns++;
225  }
226  while (idxfns->fn_name);
227 
228  return false;
229 }
static const IndexableFunction IndexableFunctions[]

References IndexableFunction::fn_name, and IndexableFunctions.

Referenced by postgis_index_supportfn().

Here is the caller graph for this function: