- JTS support improvements
- Removed automatic call to fix_geometry_columns() in
AddGeometryColumns() and update_geometry_stats()
- - Chunked GeomUnion implementation (much faster)
PostGIS 1.0.5CVS
- New "Reporting Bugs" chapter in manual
#include "profile.h"
#include "wktparse.h"
+//
+// WARNING: buffer-based GeomUnion has been disabled due to
+// limitations in the GEOS code (it would only work
+// against polygons)
+//
// Fuzzy way of finding out how many points to stuff
// in each chunk: 680 * Mb of memory
//
// The example below is for about 32 MB (fuzzy pragmatic check)
//
-#define UNITE_USING_BUFFER 1
+#define UNITE_USING_BUFFER 0
#define MAXGEOMSPOINTS 21760
Datum relate_full(PG_FUNCTION_ARGS);