On Tue, Jul 6, 2010 at 11:00 AM, Biddy <[email protected]> wrote: > org.postgresql.util.PSQLException: ERROR: new row for relation "lidarpoints" > violates check constraint "enforce_geotype_numtarclassidreflect"
Hi Biddy, If you haven't changed the constraints created on the table by PostGis this error means exactly that you are inserting a geometry that is not of the type declared for the numtarclassidreflect column. To sort this out you have to guarantee that all data feed into that column is either a multipoint or null. I believe that ST_Multi solves your problem. Luís _______________________________________________ postgis-users mailing list [email protected] http://postgis.refractions.net/mailman/listinfo/postgis-users
