PostGIS  2.4.9dev-r@@SVN_REVISION@@

◆ lwgeom_eq()

Datum lwgeom_eq ( PG_FUNCTION_ARGS  )

Definition at line 78 of file lwgeom_btree.c.

References FALSE, gserialized_cmp(), lwgeom_ge(), PG_FUNCTION_INFO_V1(), and TRUE.

Referenced by lwgeom_le().

79 {
80  GSERIALIZED *g1 = PG_GETARG_GSERIALIZED_P(0);
81  GSERIALIZED *g2 = PG_GETARG_GSERIALIZED_P(1);
82  int cmp = gserialized_cmp(g1, g2);
83  PG_FREE_IF_COPY(g1, 0);
84  PG_FREE_IF_COPY(g2, 1);
85  if (cmp == 0)
86  PG_RETURN_BOOL(TRUE);
87  else
88  PG_RETURN_BOOL(FALSE);
89 }
int gserialized_cmp(const GSERIALIZED *g1, const GSERIALIZED *g2)
Return -1 if g1 is "less than" g2, 1 if g1 is "greater than" g2 and 0 if g1 and g2 are the "same"...
Definition: g_serialized.c:294
#define FALSE
Definition: dbfopen.c:168
#define TRUE
Definition: dbfopen.c:169
Here is the call graph for this function:
Here is the caller graph for this function: