1457{
1460 char result;
1461 GEOSGeom g1;
1462
1463 geom1 = PG_GETARG_GSERIALIZED_P(0);
1464
1465
1467 PG_RETURN_BOOL(true);
1468
1470
1472 if ( ! lwgeom )
1473 {
1474 lwpgerror("unable to deserialize input");
1475 }
1478
1479 if ( ! g1 )
1480 {
1481
1482
1483
1485 PG_RETURN_BOOL(false);
1486 }
1487
1488 result = GEOSisValid(g1);
1489 GEOSGeom_destroy(g1);
1490
1491 if (result == 2)
1492 {
1493 elog(ERROR,"GEOS isvalid() threw an error!");
1494 PG_RETURN_NULL();
1495 }
1496
1497 PG_FREE_IF_COPY(geom1, 0);
1498 PG_RETURN_BOOL(result);
1499}
LWGEOM * lwgeom_from_gserialized(const GSERIALIZED *g)
Allocate a new LWGEOM from a GSERIALIZED.
int gserialized_is_empty(const GSERIALIZED *g)
Check if a GSERIALIZED is empty without deserializing first.
char lwgeom_geos_errmsg[LWGEOM_GEOS_ERRMSG_MAXSIZE]
GEOSGeometry * LWGEOM2GEOS(const LWGEOM *lwgeom, uint8_t autofix)
void lwgeom_geos_error(const char *fmt,...)
void lwgeom_free(LWGEOM *geom)