The ST_Geometry feature class extent calculation is incorrect when the input feature class contains nil features.
Last Published: August 25, 2014No Product Found
Bug ID Number
NIM009208
Submitted
May 21, 2007
Last Modified
June 5, 2024
Applies to
No Product Found
Version found
9.2
Version Fixed
9.3
Status
Fixed
The bug has been fixed. See the Version Fixed and Additional Information, if applicable, for more information.
Workaround
Use sdelayer -o alter -E minx,miny,maxx,maxy to specify the correct layer extent. Use the following SQL query to find the envelope.select min(st_minx(shape)) , min(st_miny(shape)) , max(st_maxx(shape)) , max(st_maxy(shape)) from block_sml_st where st_isempty(shape) = 0;