Name

ST_HasBBox — Returns TRUE if the bbox of this geometry is cached, FALSE otherwise.

Synopsis

boolean ST_HasBBox(geometry geomA);

Description

Returns TRUE if the bbox of this geometry is cached, FALSE otherwise. Use ST_AddBBox and ST_DropBBox to control caching.

This method supports Circular Strings and curves

Examples

SELECT the_geom
FROM sometable WHERE ST_HasBBox(the_geom) = false;

See Also

ST_AddBBox, ST_DropBBox