Name

PostGIS_HasBBox — 해당 도형의 경계 상자가 캐시화된 경우 참을 반환하고, 그렇지 않을 경우 거짓을 반환합니다.

Synopsis

boolean PostGIS_HasBBox(geometry geomA);

설명

해당 도형의 경계 상자가 캐시화된 경우 참을 반환하고, 그렇지 않을 경우 거짓을 반환합니다. 캐시 작업을 제어하려면 PostGIS_AddBBoxPostGIS_DropBBox 를 이용하십시오.

This method supports Circular Strings and Curves.

예시

SELECT geom
FROM sometable WHERE PostGIS_HasBBox(geom) = false;