diff --git a/doc/reference.xml b/doc/reference.xml index 97a8ed8d1..d5f200be3 100644 --- a/doc/reference.xml +++ b/doc/reference.xml @@ -440,15 +440,6 @@ - - ST_HasBBOX(geometry) - - - Returns TRUE if the bbox of this geometry is cached, FALSE - otherwise. Use addBBOX() and dropBBOX() to control caching. - - ST_nrings(geometry) diff --git a/doc/reference_new.xml b/doc/reference_new.xml index e2b97642b..7f79b134f 100644 --- a/doc/reference_new.xml +++ b/doc/reference_new.xml @@ -2919,6 +2919,53 @@ WHERE n >= ST_NumGeometries(the_geom); + + + + ST_HasBBOX + + Returns TRUE if the bbox of this geometry is cached, FALSE otherwise. + + + + + + boolean ST_HasBBOX + geometry geomA + + + + + + Description + + Returns TRUE if the bbox of this geometry is cached, FALSE + otherwise. Use and to control caching. + + + + + + + + This method supports Circular Strings and curves + + + + + Examples + + SELECT the_geom +FROM sometable WHERE ST_HasBBox(the_geom) = false; + + + + + See Also + + , + +