Opened 16 years ago
Last modified 16 years ago
#92 closed task (wontfix)
Error in Estimated_Extent() when used with point geometry
Reported by: | aroranidh | Owned by: | |
---|---|---|---|
Priority: | medium | Milestone: | |
Component: | postgis | Version: | |
Keywords: | Cc: |
Description
What steps will reproduce the problem?
- Create a Point Table in PostGIS 1.3.5 with PostGRE 8.3
- SELECT estimated_extent('schema', 'table', 'geometry') AS env
- Returns ERROR: LWGEOM_estimated_extent: couldn't locate table within
current schema when used on a Point table. But it works fine for line table
What is the expected output? What do you see instead? Extent of the Point table. ERROR: LWGEOM_estimated_extent: couldn't locate table within current schema
What version of the product are you using? On what operating system? PostGIS 1.3.5 with PostGRE 8.3 on Windows XP Professional SP2
Please provide any additional information below. Below attached is the log file generated by MapGUIDE enterprise efition 2009 The Schema name and the table name are perfect.
Attachments (1)
Change History (4)
comment:1 by , 16 years ago
by , 16 years ago
Attachment: | mgserver2009_fdopostgis.log added |
---|
Hi,
estimated_extent() can only work after an ANALYZE on the database. What happens if you issue an 'ANALYZE mytable' after 'CREATE mytable ( .. )' and then try using estimated_extent()?
ATB,
Mark.