PostGIS  3.4.0dev-r@@SVN_REVISION@@

◆ needsSpatialIndex()

static bool needsSpatialIndex ( Oid  funcid,
IndexableFunction idxfn 
)
static

Definition at line 210 of file gserialized_supportfn.c.

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

References IndexableFunction::fn_name, and IndexableFunctions.

Referenced by postgis_index_supportfn().

Here is the caller graph for this function: