From b55840cc3bb33f1b891b4e90d6db997acd15380e Mon Sep 17 00:00:00 2001 From: Regina Obe Date: Mon, 1 Dec 2008 06:32:33 +0000 Subject: [PATCH] Move over ST_HasBBox git-svn-id: http://svn.osgeo.org/postgis/trunk@3347 b70326c6-7e19-0410-871a-916f4a2858ee --- doc/reference.xml | 9 --------- doc/reference_new.xml | 47 +++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 9 deletions(-) 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 + + , + +