PostGIS  2.5.7dev-r@@SVN_REVISION@@

◆ lwgeom_ge()

Datum lwgeom_ge ( PG_FUNCTION_ARGS  )

Definition at line 93 of file lwgeom_btree.c.

94 {
95  GSERIALIZED *g1 = PG_GETARG_GSERIALIZED_P(0);
96  GSERIALIZED *g2 = PG_GETARG_GSERIALIZED_P(1);
97  int cmp = gserialized_cmp(g1, g2);
98  PG_FREE_IF_COPY(g1, 0);
99  PG_FREE_IF_COPY(g2, 1);
100  if (cmp >= 0)
101  PG_RETURN_BOOL(true);
102  else
103  PG_RETURN_BOOL(false);
104 }
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

References gserialized_cmp().

Here is the call graph for this function: