]> granicus.if.org Git - postgis/commitdiff
Add test for insertion into typmod-ed table (#1414)
authorSandro Santilli <strk@keybit.net>
Mon, 16 Jan 2012 12:10:05 +0000 (12:10 +0000)
committerSandro Santilli <strk@keybit.net>
Mon, 16 Jan 2012 12:10:05 +0000 (12:10 +0000)
git-svn-id: http://svn.osgeo.org/postgis/trunk@8836 b70326c6-7e19-0410-871a-916f4a2858ee

regress/typmod.sql
regress/typmod_expected

index 3ca9b7a99e4d69056566c0e0009fff8137fc8d9e..21fdb556140c2ae647fc8b6cf5c3e00d99fac15e 100644 (file)
@@ -4,217 +4,284 @@ CREATE SCHEMA tm;
 
 -- Test construction of typed tables
 
-CREATE TABLE tm.circularstring (a int, g geometry(circularstring) );
-CREATE TABLE tm.circularstring0 (a int, g geometry(circularstring, 0) );
-CREATE TABLE tm.circularstring1 (a int, g geometry(circularstring, 1) );
-CREATE TABLE tm.circularstringm (a int, g geometry(circularstringm) );
-CREATE TABLE tm.circularstringm0 (a int, g geometry(circularstringm, 0) );
-CREATE TABLE tm.circularstringm1 (a int, g geometry(circularstringm, 1) );
-CREATE TABLE tm.circularstringz (a int, g geometry(circularstringz) );
-CREATE TABLE tm.circularstringz0 (a int, g geometry(circularstringz, 0) );
-CREATE TABLE tm.circularstringz1 (a int, g geometry(circularstringz, 1) );
-CREATE TABLE tm.circularstringzm (a int, g geometry(circularstringzm) );
-CREATE TABLE tm.circularstringzm0 (a int, g geometry(circularstringzm, 0) );
-CREATE TABLE tm.circularstringzm1 (a int, g geometry(circularstringzm, 1) );
-
-CREATE TABLE tm.compoundcurve (a int, g geometry(compoundcurve) );
-CREATE TABLE tm.compoundcurve0 (a int, g geometry(compoundcurve, 0) );
-CREATE TABLE tm.compoundcurve1 (a int, g geometry(compoundcurve, 1) );
-CREATE TABLE tm.compoundcurvem (a int, g geometry(compoundcurvem) );
-CREATE TABLE tm.compoundcurvem0 (a int, g geometry(compoundcurvem, 0) );
-CREATE TABLE tm.compoundcurvem1 (a int, g geometry(compoundcurvem, 1) );
-CREATE TABLE tm.compoundcurvez (a int, g geometry(compoundcurvez) );
-CREATE TABLE tm.compoundcurvez0 (a int, g geometry(compoundcurvez, 0) );
-CREATE TABLE tm.compoundcurvez1 (a int, g geometry(compoundcurvez, 1) );
-CREATE TABLE tm.compoundcurvezm (a int, g geometry(compoundcurvezm) );
-CREATE TABLE tm.compoundcurvezm0 (a int, g geometry(compoundcurvezm, 0) );
-CREATE TABLE tm.compoundcurvezm1 (a int, g geometry(compoundcurvezm, 1) );
-
-CREATE TABLE tm.curvepolygon (a int, g geometry(curvepolygon) );
-CREATE TABLE tm.curvepolygon0 (a int, g geometry(curvepolygon, 0) );
-CREATE TABLE tm.curvepolygon1 (a int, g geometry(curvepolygon, 1) );
-CREATE TABLE tm.curvepolygonm (a int, g geometry(curvepolygonm) );
-CREATE TABLE tm.curvepolygonm0 (a int, g geometry(curvepolygonm, 0) );
-CREATE TABLE tm.curvepolygonm1 (a int, g geometry(curvepolygonm, 1) );
-CREATE TABLE tm.curvepolygonz (a int, g geometry(curvepolygonz) );
-CREATE TABLE tm.curvepolygonz0 (a int, g geometry(curvepolygonz, 0) );
-CREATE TABLE tm.curvepolygonz1 (a int, g geometry(curvepolygonz, 1) );
-CREATE TABLE tm.curvepolygonzm (a int, g geometry(curvepolygonzm) );
-CREATE TABLE tm.curvepolygonzm0 (a int, g geometry(curvepolygonzm, 0) );
-CREATE TABLE tm.curvepolygonzm1 (a int, g geometry(curvepolygonzm, 1) );
-
-CREATE TABLE tm.geometry (a int, g geometry(geometry) );
-CREATE TABLE tm.geometry0 (a int, g geometry(geometry, 0) );
-CREATE TABLE tm.geometry1 (a int, g geometry(geometry, 1) );
-CREATE TABLE tm.geometrym (a int, g geometry(geometrym) );
-CREATE TABLE tm.geometrym0 (a int, g geometry(geometrym, 0) );
-CREATE TABLE tm.geometrym1 (a int, g geometry(geometrym, 1) );
-CREATE TABLE tm.geometryz (a int, g geometry(geometryz) );
-CREATE TABLE tm.geometryz0 (a int, g geometry(geometryz, 0) );
-CREATE TABLE tm.geometryz1 (a int, g geometry(geometryz, 1) );
-CREATE TABLE tm.geometryzm (a int, g geometry(geometryzm) );
-CREATE TABLE tm.geometryzm0 (a int, g geometry(geometryzm, 0) );
-CREATE TABLE tm.geometryzm1 (a int, g geometry(geometryzm, 1) );
-
-CREATE TABLE tm.geometrycollection (a int, g geometry(geometrycollection) );
-CREATE TABLE tm.geometrycollection0 (a int, g geometry(geometrycollection, 0) );
-CREATE TABLE tm.geometrycollection1 (a int, g geometry(geometrycollection, 1) );
-CREATE TABLE tm.geometrycollectionm (a int, g geometry(geometrycollectionm) );
-CREATE TABLE tm.geometrycollectionm0 (a int, g geometry(geometrycollectionm, 0) );
-CREATE TABLE tm.geometrycollectionm1 (a int, g geometry(geometrycollectionm, 1) );
-CREATE TABLE tm.geometrycollectionz (a int, g geometry(geometrycollectionz) );
-CREATE TABLE tm.geometrycollectionz0 (a int, g geometry(geometrycollectionz, 0) );
-CREATE TABLE tm.geometrycollectionz1 (a int, g geometry(geometrycollectionz, 1) );
-CREATE TABLE tm.geometrycollectionzm (a int, g geometry(geometrycollectionzm) );
-CREATE TABLE tm.geometrycollectionzm0 (a int, g geometry(geometrycollectionzm, 0) );
-CREATE TABLE tm.geometrycollectionzm1 (a int, g geometry(geometrycollectionzm, 1) );
-
-CREATE TABLE tm.linestring (a int, g geometry(linestring) );
-CREATE TABLE tm.linestring0 (a int, g geometry(linestring, 0) );
-CREATE TABLE tm.linestring1 (a int, g geometry(linestring, 1) );
-CREATE TABLE tm.linestringm (a int, g geometry(linestringm) );
-CREATE TABLE tm.linestringm0 (a int, g geometry(linestringm, 0) );
-CREATE TABLE tm.linestringm1 (a int, g geometry(linestringm, 1) );
-CREATE TABLE tm.linestringz (a int, g geometry(linestringz) );
-CREATE TABLE tm.linestringz0 (a int, g geometry(linestringz, 0) );
-CREATE TABLE tm.linestringz1 (a int, g geometry(linestringz, 1) );
-CREATE TABLE tm.linestringzm (a int, g geometry(linestringzm) );
-CREATE TABLE tm.linestringzm0 (a int, g geometry(linestringzm, 0) );
-CREATE TABLE tm.linestringzm1 (a int, g geometry(linestringzm, 1) );
-
-CREATE TABLE tm.multicurve (a int, g geometry(multicurve) );
-CREATE TABLE tm.multicurve0 (a int, g geometry(multicurve, 0) );
-CREATE TABLE tm.multicurve1 (a int, g geometry(multicurve, 1) );
-CREATE TABLE tm.multicurvem (a int, g geometry(multicurvem) );
-CREATE TABLE tm.multicurvem0 (a int, g geometry(multicurvem, 0) );
-CREATE TABLE tm.multicurvem1 (a int, g geometry(multicurvem, 1) );
-CREATE TABLE tm.multicurvez (a int, g geometry(multicurvez) );
-CREATE TABLE tm.multicurvez0 (a int, g geometry(multicurvez, 0) );
-CREATE TABLE tm.multicurvez1 (a int, g geometry(multicurvez, 1) );
-CREATE TABLE tm.multicurvezm (a int, g geometry(multicurvezm) );
-CREATE TABLE tm.multicurvezm0 (a int, g geometry(multicurvezm, 0) );
-CREATE TABLE tm.multicurvezm1 (a int, g geometry(multicurvezm, 1) );
-
-CREATE TABLE tm.multilinestring (a int, g geometry(multilinestring) );
-CREATE TABLE tm.multilinestring0 (a int, g geometry(multilinestring, 0) );
-CREATE TABLE tm.multilinestring1 (a int, g geometry(multilinestring, 1) );
-CREATE TABLE tm.multilinestringm (a int, g geometry(multilinestringm) );
-CREATE TABLE tm.multilinestringm0 (a int, g geometry(multilinestringm, 0) );
-CREATE TABLE tm.multilinestringm1 (a int, g geometry(multilinestringm, 1) );
-CREATE TABLE tm.multilinestringz (a int, g geometry(multilinestringz) );
-CREATE TABLE tm.multilinestringz0 (a int, g geometry(multilinestringz, 0) );
-CREATE TABLE tm.multilinestringz1 (a int, g geometry(multilinestringz, 1) );
-CREATE TABLE tm.multilinestringzm (a int, g geometry(multilinestringzm) );
-CREATE TABLE tm.multilinestringzm0 (a int, g geometry(multilinestringzm, 0) );
-CREATE TABLE tm.multilinestringzm1 (a int, g geometry(multilinestringzm, 1) );
-
-CREATE TABLE tm.multipolygon (a int, g geometry(multipolygon) );
-CREATE TABLE tm.multipolygon0 (a int, g geometry(multipolygon, 0) );
-CREATE TABLE tm.multipolygon1 (a int, g geometry(multipolygon, 1) );
-CREATE TABLE tm.multipolygonm (a int, g geometry(multipolygonm) );
-CREATE TABLE tm.multipolygonm0 (a int, g geometry(multipolygonm, 0) );
-CREATE TABLE tm.multipolygonm1 (a int, g geometry(multipolygonm, 1) );
-CREATE TABLE tm.multipolygonz (a int, g geometry(multipolygonz) );
-CREATE TABLE tm.multipolygonz0 (a int, g geometry(multipolygonz, 0) );
-CREATE TABLE tm.multipolygonz1 (a int, g geometry(multipolygonz, 1) );
-CREATE TABLE tm.multipolygonzm (a int, g geometry(multipolygonzm) );
-CREATE TABLE tm.multipolygonzm0 (a int, g geometry(multipolygonzm, 0) );
-CREATE TABLE tm.multipolygonzm1 (a int, g geometry(multipolygonzm, 1) );
-
-CREATE TABLE tm.multipoint (a int, g geometry(multipoint) );
-CREATE TABLE tm.multipoint0 (a int, g geometry(multipoint, 0) );
-CREATE TABLE tm.multipoint1 (a int, g geometry(multipoint, 1) );
-CREATE TABLE tm.multipointm (a int, g geometry(multipointm) );
-CREATE TABLE tm.multipointm0 (a int, g geometry(multipointm, 0) );
-CREATE TABLE tm.multipointm1 (a int, g geometry(multipointm, 1) );
-CREATE TABLE tm.multipointz (a int, g geometry(multipointz) );
-CREATE TABLE tm.multipointz0 (a int, g geometry(multipointz, 0) );
-CREATE TABLE tm.multipointz1 (a int, g geometry(multipointz, 1) );
-CREATE TABLE tm.multipointzm (a int, g geometry(multipointzm) );
-CREATE TABLE tm.multipointzm0 (a int, g geometry(multipointzm, 0) );
-CREATE TABLE tm.multipointzm1 (a int, g geometry(multipointzm, 1) );
-
-CREATE TABLE tm.multisurface (a int, g geometry(multisurface) );
-CREATE TABLE tm.multisurface0 (a int, g geometry(multisurface, 0) );
-CREATE TABLE tm.multisurface1 (a int, g geometry(multisurface, 1) );
-CREATE TABLE tm.multisurfacem (a int, g geometry(multisurfacem) );
-CREATE TABLE tm.multisurfacem0 (a int, g geometry(multisurfacem, 0) );
-CREATE TABLE tm.multisurfacem1 (a int, g geometry(multisurfacem, 1) );
-CREATE TABLE tm.multisurfacez (a int, g geometry(multisurfacez) );
-CREATE TABLE tm.multisurfacez0 (a int, g geometry(multisurfacez, 0) );
-CREATE TABLE tm.multisurfacez1 (a int, g geometry(multisurfacez, 1) );
-CREATE TABLE tm.multisurfacezm (a int, g geometry(multisurfacezm) );
-CREATE TABLE tm.multisurfacezm0 (a int, g geometry(multisurfacezm, 0) );
-CREATE TABLE tm.multisurfacezm1 (a int, g geometry(multisurfacezm, 1) );
-
-CREATE TABLE tm.point (a int, g geometry(point) );
-CREATE TABLE tm.point0 (a int, g geometry(point, 0) );
-CREATE TABLE tm.point1 (a int, g geometry(point, 1) );
-CREATE TABLE tm.pointm (a int, g geometry(pointm) );
-CREATE TABLE tm.pointm0 (a int, g geometry(pointm, 0) );
-CREATE TABLE tm.pointm1 (a int, g geometry(pointm, 1) );
-CREATE TABLE tm.pointz (a int, g geometry(pointz) );
-CREATE TABLE tm.pointz0 (a int, g geometry(pointz, 0) );
-CREATE TABLE tm.pointz1 (a int, g geometry(pointz, 1) );
-CREATE TABLE tm.pointzm (a int, g geometry(pointzm) );
-CREATE TABLE tm.pointzm0 (a int, g geometry(pointzm, 0) );
-CREATE TABLE tm.pointzm1 (a int, g geometry(pointzm, 1) );
-
-CREATE TABLE tm.polygon (a int, g geometry(polygon) );
-CREATE TABLE tm.polygon0 (a int, g geometry(polygon, 0) );
-CREATE TABLE tm.polygon1 (a int, g geometry(polygon, 1) );
-CREATE TABLE tm.polygonm (a int, g geometry(polygonm) );
-CREATE TABLE tm.polygonm0 (a int, g geometry(polygonm, 0) );
-CREATE TABLE tm.polygonm1 (a int, g geometry(polygonm, 1) );
-CREATE TABLE tm.polygonz (a int, g geometry(polygonz) );
-CREATE TABLE tm.polygonz0 (a int, g geometry(polygonz, 0) );
-CREATE TABLE tm.polygonz1 (a int, g geometry(polygonz, 1) );
-CREATE TABLE tm.polygonzm (a int, g geometry(polygonzm) );
-CREATE TABLE tm.polygonzm0 (a int, g geometry(polygonzm, 0) );
-CREATE TABLE tm.polygonzm1 (a int, g geometry(polygonzm, 1) );
-
-CREATE TABLE tm.polyhedralsurface (a int, g geometry(polyhedralsurface) );
-CREATE TABLE tm.polyhedralsurface0 (a int, g geometry(polyhedralsurface, 0) );
-CREATE TABLE tm.polyhedralsurface1 (a int, g geometry(polyhedralsurface, 1) );
-CREATE TABLE tm.polyhedralsurfacem (a int, g geometry(polyhedralsurfacem) );
-CREATE TABLE tm.polyhedralsurfacem0 (a int, g geometry(polyhedralsurfacem, 0) );
-CREATE TABLE tm.polyhedralsurfacem1 (a int, g geometry(polyhedralsurfacem, 1) );
-CREATE TABLE tm.polyhedralsurfacez (a int, g geometry(polyhedralsurfacez) );
-CREATE TABLE tm.polyhedralsurfacez0 (a int, g geometry(polyhedralsurfacez, 0) );
-CREATE TABLE tm.polyhedralsurfacez1 (a int, g geometry(polyhedralsurfacez, 1) );
-CREATE TABLE tm.polyhedralsurfacezm (a int, g geometry(polyhedralsurfacezm) );
-CREATE TABLE tm.polyhedralsurfacezm0 (a int, g geometry(polyhedralsurfacezm, 0) );
-CREATE TABLE tm.polyhedralsurfacezm1 (a int, g geometry(polyhedralsurfacezm, 1) );
-
-CREATE TABLE tm.tin (a int, g geometry(tin) );
-CREATE TABLE tm.tin0 (a int, g geometry(tin, 0) );
-CREATE TABLE tm.tin1 (a int, g geometry(tin, 1) );
-CREATE TABLE tm.tinm (a int, g geometry(tinm) );
-CREATE TABLE tm.tinm0 (a int, g geometry(tinm, 0) );
-CREATE TABLE tm.tinm1 (a int, g geometry(tinm, 1) );
-CREATE TABLE tm.tinz (a int, g geometry(tinz) );
-CREATE TABLE tm.tinz0 (a int, g geometry(tinz, 0) );
-CREATE TABLE tm.tinz1 (a int, g geometry(tinz, 1) );
-CREATE TABLE tm.tinzm (a int, g geometry(tinzm) );
-CREATE TABLE tm.tinzm0 (a int, g geometry(tinzm, 0) );
-CREATE TABLE tm.tinzm1 (a int, g geometry(tinzm, 1) );
-
-CREATE TABLE tm.triangle (a int, g geometry(triangle) );
-CREATE TABLE tm.triangle0 (a int, g geometry(triangle, 0) );
-CREATE TABLE tm.triangle1 (a int, g geometry(triangle, 1) );
-CREATE TABLE tm.trianglem (a int, g geometry(trianglem) );
-CREATE TABLE tm.trianglem0 (a int, g geometry(trianglem, 0) );
-CREATE TABLE tm.trianglem1 (a int, g geometry(trianglem, 1) );
-CREATE TABLE tm.trianglez (a int, g geometry(trianglez) );
-CREATE TABLE tm.trianglez0 (a int, g geometry(trianglez, 0) );
-CREATE TABLE tm.trianglez1 (a int, g geometry(trianglez, 1) );
-CREATE TABLE tm.trianglezm (a int, g geometry(trianglezm) );
-CREATE TABLE tm.trianglezm0 (a int, g geometry(trianglezm, 0) );
-CREATE TABLE tm.trianglezm1 (a int, g geometry(trianglezm, 1) );
+CREATE TABLE tm.circularstring (id serial, g geometry(circularstring) );
+CREATE TABLE tm.circularstring0 (id serial, g geometry(circularstring, 0) );
+CREATE TABLE tm.circularstring1 (id serial, g geometry(circularstring, 1) );
+CREATE TABLE tm.circularstringm (id serial, g geometry(circularstringm) );
+CREATE TABLE tm.circularstringm0 (id serial, g geometry(circularstringm, 0) );
+CREATE TABLE tm.circularstringm1 (id serial, g geometry(circularstringm, 1) );
+CREATE TABLE tm.circularstringz (id serial, g geometry(circularstringz) );
+CREATE TABLE tm.circularstringz0 (id serial, g geometry(circularstringz, 0) );
+CREATE TABLE tm.circularstringz1 (id serial, g geometry(circularstringz, 1) );
+CREATE TABLE tm.circularstringzm (id serial, g geometry(circularstringzm) );
+CREATE TABLE tm.circularstringzm0 (id serial, g geometry(circularstringzm, 0) );
+CREATE TABLE tm.circularstringzm1 (id serial, g geometry(circularstringzm, 1) );
+
+CREATE TABLE tm.compoundcurve (id serial, g geometry(compoundcurve) );
+CREATE TABLE tm.compoundcurve0 (id serial, g geometry(compoundcurve, 0) );
+CREATE TABLE tm.compoundcurve1 (id serial, g geometry(compoundcurve, 1) );
+CREATE TABLE tm.compoundcurvem (id serial, g geometry(compoundcurvem) );
+CREATE TABLE tm.compoundcurvem0 (id serial, g geometry(compoundcurvem, 0) );
+CREATE TABLE tm.compoundcurvem1 (id serial, g geometry(compoundcurvem, 1) );
+CREATE TABLE tm.compoundcurvez (id serial, g geometry(compoundcurvez) );
+CREATE TABLE tm.compoundcurvez0 (id serial, g geometry(compoundcurvez, 0) );
+CREATE TABLE tm.compoundcurvez1 (id serial, g geometry(compoundcurvez, 1) );
+CREATE TABLE tm.compoundcurvezm (id serial, g geometry(compoundcurvezm) );
+CREATE TABLE tm.compoundcurvezm0 (id serial, g geometry(compoundcurvezm, 0) );
+CREATE TABLE tm.compoundcurvezm1 (id serial, g geometry(compoundcurvezm, 1) );
+
+CREATE TABLE tm.curvepolygon (id serial, g geometry(curvepolygon) );
+CREATE TABLE tm.curvepolygon0 (id serial, g geometry(curvepolygon, 0) );
+CREATE TABLE tm.curvepolygon1 (id serial, g geometry(curvepolygon, 1) );
+CREATE TABLE tm.curvepolygonm (id serial, g geometry(curvepolygonm) );
+CREATE TABLE tm.curvepolygonm0 (id serial, g geometry(curvepolygonm, 0) );
+CREATE TABLE tm.curvepolygonm1 (id serial, g geometry(curvepolygonm, 1) );
+CREATE TABLE tm.curvepolygonz (id serial, g geometry(curvepolygonz) );
+CREATE TABLE tm.curvepolygonz0 (id serial, g geometry(curvepolygonz, 0) );
+CREATE TABLE tm.curvepolygonz1 (id serial, g geometry(curvepolygonz, 1) );
+CREATE TABLE tm.curvepolygonzm (id serial, g geometry(curvepolygonzm) );
+CREATE TABLE tm.curvepolygonzm0 (id serial, g geometry(curvepolygonzm, 0) );
+CREATE TABLE tm.curvepolygonzm1 (id serial, g geometry(curvepolygonzm, 1) );
+
+CREATE TABLE tm.geometry (id serial, g geometry(geometry) );
+CREATE TABLE tm.geometry0 (id serial, g geometry(geometry, 0) );
+CREATE TABLE tm.geometry1 (id serial, g geometry(geometry, 1) );
+CREATE TABLE tm.geometrym (id serial, g geometry(geometrym) );
+CREATE TABLE tm.geometrym0 (id serial, g geometry(geometrym, 0) );
+CREATE TABLE tm.geometrym1 (id serial, g geometry(geometrym, 1) );
+CREATE TABLE tm.geometryz (id serial, g geometry(geometryz) );
+CREATE TABLE tm.geometryz0 (id serial, g geometry(geometryz, 0) );
+CREATE TABLE tm.geometryz1 (id serial, g geometry(geometryz, 1) );
+CREATE TABLE tm.geometryzm (id serial, g geometry(geometryzm) );
+CREATE TABLE tm.geometryzm0 (id serial, g geometry(geometryzm, 0) );
+CREATE TABLE tm.geometryzm1 (id serial, g geometry(geometryzm, 1) );
+
+CREATE TABLE tm.geometrycollection (id serial, g geometry(geometrycollection) );
+CREATE TABLE tm.geometrycollection0 (id serial, g geometry(geometrycollection, 0) );
+CREATE TABLE tm.geometrycollection1 (id serial, g geometry(geometrycollection, 1) );
+CREATE TABLE tm.geometrycollectionm (id serial, g geometry(geometrycollectionm) );
+CREATE TABLE tm.geometrycollectionm0 (id serial, g geometry(geometrycollectionm, 0) );
+CREATE TABLE tm.geometrycollectionm1 (id serial, g geometry(geometrycollectionm, 1) );
+CREATE TABLE tm.geometrycollectionz (id serial, g geometry(geometrycollectionz) );
+CREATE TABLE tm.geometrycollectionz0 (id serial, g geometry(geometrycollectionz, 0) );
+CREATE TABLE tm.geometrycollectionz1 (id serial, g geometry(geometrycollectionz, 1) );
+CREATE TABLE tm.geometrycollectionzm (id serial, g geometry(geometrycollectionzm) );
+CREATE TABLE tm.geometrycollectionzm0 (id serial, g geometry(geometrycollectionzm, 0) );
+CREATE TABLE tm.geometrycollectionzm1 (id serial, g geometry(geometrycollectionzm, 1) );
+
+CREATE TABLE tm.linestring (id serial, g geometry(linestring) );
+CREATE TABLE tm.linestring0 (id serial, g geometry(linestring, 0) );
+CREATE TABLE tm.linestring1 (id serial, g geometry(linestring, 1) );
+CREATE TABLE tm.linestringm (id serial, g geometry(linestringm) );
+CREATE TABLE tm.linestringm0 (id serial, g geometry(linestringm, 0) );
+CREATE TABLE tm.linestringm1 (id serial, g geometry(linestringm, 1) );
+CREATE TABLE tm.linestringz (id serial, g geometry(linestringz) );
+CREATE TABLE tm.linestringz0 (id serial, g geometry(linestringz, 0) );
+CREATE TABLE tm.linestringz1 (id serial, g geometry(linestringz, 1) );
+CREATE TABLE tm.linestringzm (id serial, g geometry(linestringzm) );
+CREATE TABLE tm.linestringzm0 (id serial, g geometry(linestringzm, 0) );
+CREATE TABLE tm.linestringzm1 (id serial, g geometry(linestringzm, 1) );
+
+CREATE TABLE tm.multicurve (id serial, g geometry(multicurve) );
+CREATE TABLE tm.multicurve0 (id serial, g geometry(multicurve, 0) );
+CREATE TABLE tm.multicurve1 (id serial, g geometry(multicurve, 1) );
+CREATE TABLE tm.multicurvem (id serial, g geometry(multicurvem) );
+CREATE TABLE tm.multicurvem0 (id serial, g geometry(multicurvem, 0) );
+CREATE TABLE tm.multicurvem1 (id serial, g geometry(multicurvem, 1) );
+CREATE TABLE tm.multicurvez (id serial, g geometry(multicurvez) );
+CREATE TABLE tm.multicurvez0 (id serial, g geometry(multicurvez, 0) );
+CREATE TABLE tm.multicurvez1 (id serial, g geometry(multicurvez, 1) );
+CREATE TABLE tm.multicurvezm (id serial, g geometry(multicurvezm) );
+CREATE TABLE tm.multicurvezm0 (id serial, g geometry(multicurvezm, 0) );
+CREATE TABLE tm.multicurvezm1 (id serial, g geometry(multicurvezm, 1) );
+
+CREATE TABLE tm.multilinestring (id serial, g geometry(multilinestring) );
+CREATE TABLE tm.multilinestring0 (id serial, g geometry(multilinestring, 0) );
+CREATE TABLE tm.multilinestring1 (id serial, g geometry(multilinestring, 1) );
+CREATE TABLE tm.multilinestringm (id serial, g geometry(multilinestringm) );
+CREATE TABLE tm.multilinestringm0 (id serial, g geometry(multilinestringm, 0) );
+CREATE TABLE tm.multilinestringm1 (id serial, g geometry(multilinestringm, 1) );
+CREATE TABLE tm.multilinestringz (id serial, g geometry(multilinestringz) );
+CREATE TABLE tm.multilinestringz0 (id serial, g geometry(multilinestringz, 0) );
+CREATE TABLE tm.multilinestringz1 (id serial, g geometry(multilinestringz, 1) );
+CREATE TABLE tm.multilinestringzm (id serial, g geometry(multilinestringzm) );
+CREATE TABLE tm.multilinestringzm0 (id serial, g geometry(multilinestringzm, 0) );
+CREATE TABLE tm.multilinestringzm1 (id serial, g geometry(multilinestringzm, 1) );
+
+CREATE TABLE tm.multipolygon (id serial, g geometry(multipolygon) );
+CREATE TABLE tm.multipolygon0 (id serial, g geometry(multipolygon, 0) );
+CREATE TABLE tm.multipolygon1 (id serial, g geometry(multipolygon, 1) );
+CREATE TABLE tm.multipolygonm (id serial, g geometry(multipolygonm) );
+CREATE TABLE tm.multipolygonm0 (id serial, g geometry(multipolygonm, 0) );
+CREATE TABLE tm.multipolygonm1 (id serial, g geometry(multipolygonm, 1) );
+CREATE TABLE tm.multipolygonz (id serial, g geometry(multipolygonz) );
+CREATE TABLE tm.multipolygonz0 (id serial, g geometry(multipolygonz, 0) );
+CREATE TABLE tm.multipolygonz1 (id serial, g geometry(multipolygonz, 1) );
+CREATE TABLE tm.multipolygonzm (id serial, g geometry(multipolygonzm) );
+CREATE TABLE tm.multipolygonzm0 (id serial, g geometry(multipolygonzm, 0) );
+CREATE TABLE tm.multipolygonzm1 (id serial, g geometry(multipolygonzm, 1) );
+
+CREATE TABLE tm.multipoint (id serial, g geometry(multipoint) );
+CREATE TABLE tm.multipoint0 (id serial, g geometry(multipoint, 0) );
+CREATE TABLE tm.multipoint1 (id serial, g geometry(multipoint, 1) );
+CREATE TABLE tm.multipointm (id serial, g geometry(multipointm) );
+CREATE TABLE tm.multipointm0 (id serial, g geometry(multipointm, 0) );
+CREATE TABLE tm.multipointm1 (id serial, g geometry(multipointm, 1) );
+CREATE TABLE tm.multipointz (id serial, g geometry(multipointz) );
+CREATE TABLE tm.multipointz0 (id serial, g geometry(multipointz, 0) );
+CREATE TABLE tm.multipointz1 (id serial, g geometry(multipointz, 1) );
+CREATE TABLE tm.multipointzm (id serial, g geometry(multipointzm) );
+CREATE TABLE tm.multipointzm0 (id serial, g geometry(multipointzm, 0) );
+CREATE TABLE tm.multipointzm1 (id serial, g geometry(multipointzm, 1) );
+
+CREATE TABLE tm.multisurface (id serial, g geometry(multisurface) );
+CREATE TABLE tm.multisurface0 (id serial, g geometry(multisurface, 0) );
+CREATE TABLE tm.multisurface1 (id serial, g geometry(multisurface, 1) );
+CREATE TABLE tm.multisurfacem (id serial, g geometry(multisurfacem) );
+CREATE TABLE tm.multisurfacem0 (id serial, g geometry(multisurfacem, 0) );
+CREATE TABLE tm.multisurfacem1 (id serial, g geometry(multisurfacem, 1) );
+CREATE TABLE tm.multisurfacez (id serial, g geometry(multisurfacez) );
+CREATE TABLE tm.multisurfacez0 (id serial, g geometry(multisurfacez, 0) );
+CREATE TABLE tm.multisurfacez1 (id serial, g geometry(multisurfacez, 1) );
+CREATE TABLE tm.multisurfacezm (id serial, g geometry(multisurfacezm) );
+CREATE TABLE tm.multisurfacezm0 (id serial, g geometry(multisurfacezm, 0) );
+CREATE TABLE tm.multisurfacezm1 (id serial, g geometry(multisurfacezm, 1) );
+
+CREATE TABLE tm.point (id serial, g geometry(point) );
+CREATE TABLE tm.point0 (id serial, g geometry(point, 0) );
+CREATE TABLE tm.point1 (id serial, g geometry(point, 1) );
+CREATE TABLE tm.pointm (id serial, g geometry(pointm) );
+CREATE TABLE tm.pointm0 (id serial, g geometry(pointm, 0) );
+CREATE TABLE tm.pointm1 (id serial, g geometry(pointm, 1) );
+CREATE TABLE tm.pointz (id serial, g geometry(pointz) );
+CREATE TABLE tm.pointz0 (id serial, g geometry(pointz, 0) );
+CREATE TABLE tm.pointz1 (id serial, g geometry(pointz, 1) );
+CREATE TABLE tm.pointzm (id serial, g geometry(pointzm) );
+CREATE TABLE tm.pointzm0 (id serial, g geometry(pointzm, 0) );
+CREATE TABLE tm.pointzm1 (id serial, g geometry(pointzm, 1) );
+
+CREATE TABLE tm.polygon (id serial, g geometry(polygon) );
+CREATE TABLE tm.polygon0 (id serial, g geometry(polygon, 0) );
+CREATE TABLE tm.polygon1 (id serial, g geometry(polygon, 1) );
+CREATE TABLE tm.polygonm (id serial, g geometry(polygonm) );
+CREATE TABLE tm.polygonm0 (id serial, g geometry(polygonm, 0) );
+CREATE TABLE tm.polygonm1 (id serial, g geometry(polygonm, 1) );
+CREATE TABLE tm.polygonz (id serial, g geometry(polygonz) );
+CREATE TABLE tm.polygonz0 (id serial, g geometry(polygonz, 0) );
+CREATE TABLE tm.polygonz1 (id serial, g geometry(polygonz, 1) );
+CREATE TABLE tm.polygonzm (id serial, g geometry(polygonzm) );
+CREATE TABLE tm.polygonzm0 (id serial, g geometry(polygonzm, 0) );
+CREATE TABLE tm.polygonzm1 (id serial, g geometry(polygonzm, 1) );
+
+CREATE TABLE tm.polyhedralsurface (id serial, g geometry(polyhedralsurface) );
+CREATE TABLE tm.polyhedralsurface0 (id serial, g geometry(polyhedralsurface, 0) );
+CREATE TABLE tm.polyhedralsurface1 (id serial, g geometry(polyhedralsurface, 1) );
+CREATE TABLE tm.polyhedralsurfacem (id serial, g geometry(polyhedralsurfacem) );
+CREATE TABLE tm.polyhedralsurfacem0 (id serial, g geometry(polyhedralsurfacem, 0) );
+CREATE TABLE tm.polyhedralsurfacem1 (id serial, g geometry(polyhedralsurfacem, 1) );
+CREATE TABLE tm.polyhedralsurfacez (id serial, g geometry(polyhedralsurfacez) );
+CREATE TABLE tm.polyhedralsurfacez0 (id serial, g geometry(polyhedralsurfacez, 0) );
+CREATE TABLE tm.polyhedralsurfacez1 (id serial, g geometry(polyhedralsurfacez, 1) );
+CREATE TABLE tm.polyhedralsurfacezm (id serial, g geometry(polyhedralsurfacezm) );
+CREATE TABLE tm.polyhedralsurfacezm0 (id serial, g geometry(polyhedralsurfacezm, 0) );
+CREATE TABLE tm.polyhedralsurfacezm1 (id serial, g geometry(polyhedralsurfacezm, 1) );
+
+CREATE TABLE tm.tin (id serial, g geometry(tin) );
+CREATE TABLE tm.tin0 (id serial, g geometry(tin, 0) );
+CREATE TABLE tm.tin1 (id serial, g geometry(tin, 1) );
+CREATE TABLE tm.tinm (id serial, g geometry(tinm) );
+CREATE TABLE tm.tinm0 (id serial, g geometry(tinm, 0) );
+CREATE TABLE tm.tinm1 (id serial, g geometry(tinm, 1) );
+CREATE TABLE tm.tinz (id serial, g geometry(tinz) );
+CREATE TABLE tm.tinz0 (id serial, g geometry(tinz, 0) );
+CREATE TABLE tm.tinz1 (id serial, g geometry(tinz, 1) );
+CREATE TABLE tm.tinzm (id serial, g geometry(tinzm) );
+CREATE TABLE tm.tinzm0 (id serial, g geometry(tinzm, 0) );
+CREATE TABLE tm.tinzm1 (id serial, g geometry(tinzm, 1) );
+
+CREATE TABLE tm.triangle (id serial, g geometry(triangle) );
+CREATE TABLE tm.triangle0 (id serial, g geometry(triangle, 0) );
+CREATE TABLE tm.triangle1 (id serial, g geometry(triangle, 1) );
+CREATE TABLE tm.trianglem (id serial, g geometry(trianglem) );
+CREATE TABLE tm.trianglem0 (id serial, g geometry(trianglem, 0) );
+CREATE TABLE tm.trianglem1 (id serial, g geometry(trianglem, 1) );
+CREATE TABLE tm.trianglez (id serial, g geometry(trianglez) );
+CREATE TABLE tm.trianglez0 (id serial, g geometry(trianglez, 0) );
+CREATE TABLE tm.trianglez1 (id serial, g geometry(trianglez, 1) );
+CREATE TABLE tm.trianglezm (id serial, g geometry(trianglezm) );
+CREATE TABLE tm.trianglezm0 (id serial, g geometry(trianglezm, 0) );
+CREATE TABLE tm.trianglezm1 (id serial, g geometry(trianglezm, 1) );
 
 SELECT * from geometry_columns ORDER BY 3;
 
--- TODO: test that you can only insert compatible types
+CREATE TABLE tm.types (id serial, g geometry);
+
+INSERT INTO tm.types(g) values ('SRID=0;POINT EMPTY');
+INSERT INTO tm.types(g) values ('SRID=0;LINESTRING EMPTY');
+INSERT INTO tm.types(g) values ('SRID=0;POLYGON EMPTY');
+INSERT INTO tm.types(g) values ('SRID=0;MULTIPOINT EMPTY');
+INSERT INTO tm.types(g) values ('SRID=0;MULTILINESTRING EMPTY');
+INSERT INTO tm.types(g) values ('SRID=0;MULTIPOLYGON EMPTY');
+INSERT INTO tm.types(g) values ('SRID=0;GEOMETRYCOLLECTION EMPTY');
+INSERT INTO tm.types(g) values ('SRID=0;CIRCULARSTRING EMPTY');
+INSERT INTO tm.types(g) values ('SRID=0;COMPOUNDCURVE EMPTY');
+INSERT INTO tm.types(g) values ('SRID=0;CURVEPOLYGON EMPTY');
+INSERT INTO tm.types(g) values ('SRID=0;MULTICURVE EMPTY');
+INSERT INTO tm.types(g) values ('SRID=0;MULTISURFACE EMPTY');
+INSERT INTO tm.types(g) values ('SRID=0;POLYHEDRALSURFACE EMPTY');
+INSERT INTO tm.types(g) values ('SRID=0;TRIANGLE EMPTY');
+INSERT INTO tm.types(g) values ('SRID=0;TIN EMPTY');
+
+-- all zm flags
+INSERT INTO tm.types(g)
+SELECT st_force_3dz(g) FROM tm.types WHERE id < 15 ORDER BY id;
+INSERT INTO tm.types(g)
+SELECT st_force_3dm(g) FROM tm.types WHERE id < 15 ORDER BY id;
+INSERT INTO tm.types(g)
+SELECT st_force_4d(g) FROM tm.types WHERE id < 15 ORDER BY id;
+
+-- known srid
+INSERT INTO tm.types(g)
+SELECT st_setsrid(g,1) FROM tm.types ORDER BY id;
+
+
+-- Now try to insert each type into each table
+CREATE FUNCTION tm.insert_all()
+RETURNS TABLE(out_where varchar, out_what varchar, out_status text)
+AS
+$$
+DECLARE
+       sql text;
+       rec RECORD;
+       rec2 RECORD;
+BEGIN
+       FOR rec IN SELECT * from geometry_columns
+               WHERE f_table_name != 'types' ORDER BY 3 
+       LOOP
+               out_where := rec.f_table_name;
+               FOR rec2 IN SELECT * from tm.types ORDER BY id 
+               LOOP
+                       out_what := 'SRID=' || ST_Srid(rec2.g) || ';' || ST_AsText(rec2.g);
+                       BEGIN
+                               sql := 'INSERT INTO '
+                                       || quote_ident(rec.f_table_schema)
+                                       || '.' || quote_ident(rec.f_table_name)
+                                       || '(g) VALUES ('
+                                       || quote_literal(rec2.g::text)
+                                       || ');';
+                               EXECUTE sql;
+                               out_status := 'OK';
+                       EXCEPTION
+                       WHEN OTHERS THEN
+                               out_status := SQLERRM;
+                       END;
+                       RETURN NEXT;
+               END LOOP;
+       END LOOP;
+END;
+$$ LANGUAGE 'plpgsql';
+
+select * FROM tm.insert_all();
 
 DROP SCHEMA tm CASCADE;
 
index 19ce667d3f9901556f8e4b8e75f33fbe9c68414f..fa8228e272dab5702421829516908dc7ccb48516 100644 (file)
@@ -190,3 +190,21891 @@ postgis_reg|tm|trianglez1|g|3|1|TRIANGLE
 postgis_reg|tm|trianglezm|g|4|0|TRIANGLE
 postgis_reg|tm|trianglezm0|g|4|0|TRIANGLE
 postgis_reg|tm|trianglezm1|g|4|1|TRIANGLE
+circularstring|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring|SRID=0;CIRCULARSTRING EMPTY|OK
+circularstring|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstring|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+circularstring|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring|SRID=0;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
+circularstring|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+circularstring|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring|SRID=1;CIRCULARSTRING EMPTY|OK
+circularstring|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstring|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+circularstring|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring|SRID=1;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
+circularstring|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+circularstring|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring0|SRID=0;CIRCULARSTRING EMPTY|OK
+circularstring0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstring0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+circularstring0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring0|SRID=0;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
+circularstring0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+circularstring0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring0|SRID=1;CIRCULARSTRING EMPTY|OK
+circularstring0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstring0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+circularstring0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring0|SRID=1;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
+circularstring0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+circularstring0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstring1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring1|SRID=1;CIRCULARSTRING EMPTY|OK
+circularstring1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstring1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+circularstring1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring1|SRID=1;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
+circularstring1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstring1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstring1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstring1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstring1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstring1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstring1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstring1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+circularstring1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstring1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstring1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstring1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstring1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstring1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm|SRID=0;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
+circularstringm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+circularstringm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm|SRID=0;CIRCULARSTRING M EMPTY|OK
+circularstringm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+circularstringm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm|SRID=1;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
+circularstringm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+circularstringm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm|SRID=1;CIRCULARSTRING M EMPTY|OK
+circularstringm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+circularstringm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm0|SRID=0;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
+circularstringm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+circularstringm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm0|SRID=0;CIRCULARSTRING M EMPTY|OK
+circularstringm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+circularstringm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm0|SRID=1;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
+circularstringm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+circularstringm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm0|SRID=1;CIRCULARSTRING M EMPTY|OK
+circularstringm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+circularstringm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm1|SRID=1;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
+circularstringm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+circularstringm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm1|SRID=1;CIRCULARSTRING M EMPTY|OK
+circularstringm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+circularstringm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+circularstringz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz|SRID=0;CIRCULARSTRING Z EMPTY|OK
+circularstringz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+circularstringz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
+circularstringz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+circularstringz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz|SRID=1;CIRCULARSTRING Z EMPTY|OK
+circularstringz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+circularstringz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
+circularstringz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz0|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+circularstringz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz0|SRID=0;CIRCULARSTRING Z EMPTY|OK
+circularstringz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz0|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+circularstringz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
+circularstringz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz0|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+circularstringz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz0|SRID=1;CIRCULARSTRING Z EMPTY|OK
+circularstringz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz0|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+circularstringz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
+circularstringz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz1|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+circularstringz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz1|SRID=1;CIRCULARSTRING Z EMPTY|OK
+circularstringz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz1|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+circularstringz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
+circularstringz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+circularstringzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm|SRID=0;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
+circularstringzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+circularstringzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm|SRID=0;CIRCULARSTRING ZM EMPTY|OK
+circularstringzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+circularstringzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm|SRID=1;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
+circularstringzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+circularstringzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm|SRID=1;CIRCULARSTRING ZM EMPTY|OK
+circularstringzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm0|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+circularstringzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm0|SRID=0;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
+circularstringzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm0|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+circularstringzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm0|SRID=0;CIRCULARSTRING ZM EMPTY|OK
+circularstringzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm0|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+circularstringzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm0|SRID=1;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
+circularstringzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm0|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+circularstringzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm0|SRID=1;CIRCULARSTRING ZM EMPTY|OK
+circularstringzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+circularstringzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm1|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+circularstringzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CircularString)
+circularstringzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm1|SRID=1;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
+circularstringzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm1|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+circularstringzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+circularstringzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CircularString)
+circularstringzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CircularString)
+circularstringzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CircularString)
+circularstringzm1|SRID=1;CIRCULARSTRING ZM EMPTY|OK
+circularstringzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CircularString)
+circularstringzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CircularString)
+circularstringzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CircularString)
+circularstringzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CircularString)
+circularstringzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CircularString)
+compoundcurve|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;COMPOUNDCURVE EMPTY|OK
+compoundcurve|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+compoundcurve|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
+compoundcurve|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+compoundcurve|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;COMPOUNDCURVE EMPTY|OK
+compoundcurve|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+compoundcurve|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
+compoundcurve|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+compoundcurve|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;COMPOUNDCURVE EMPTY|OK
+compoundcurve0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+compoundcurve0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
+compoundcurve0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+compoundcurve0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;COMPOUNDCURVE EMPTY|OK
+compoundcurve0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+compoundcurve0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
+compoundcurve0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+compoundcurve0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurve1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;COMPOUNDCURVE EMPTY|OK
+compoundcurve1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+compoundcurve1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
+compoundcurve1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+compoundcurve1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurve1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
+compoundcurvem|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+compoundcurvem|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;COMPOUNDCURVE M EMPTY|OK
+compoundcurvem|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+compoundcurvem|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
+compoundcurvem|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+compoundcurvem|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;COMPOUNDCURVE M EMPTY|OK
+compoundcurvem|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+compoundcurvem|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
+compoundcurvem0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+compoundcurvem0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;COMPOUNDCURVE M EMPTY|OK
+compoundcurvem0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+compoundcurvem0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
+compoundcurvem0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+compoundcurvem0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;COMPOUNDCURVE M EMPTY|OK
+compoundcurvem0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+compoundcurvem0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvem1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
+compoundcurvem1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+compoundcurvem1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;COMPOUNDCURVE M EMPTY|OK
+compoundcurvem1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+compoundcurvem1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvem1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+compoundcurvez|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;COMPOUNDCURVE Z EMPTY|OK
+compoundcurvez|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+compoundcurvez|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
+compoundcurvez|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+compoundcurvez|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;COMPOUNDCURVE Z EMPTY|OK
+compoundcurvez|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+compoundcurvez|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
+compoundcurvez|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+compoundcurvez0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;COMPOUNDCURVE Z EMPTY|OK
+compoundcurvez0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+compoundcurvez0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
+compoundcurvez0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+compoundcurvez0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;COMPOUNDCURVE Z EMPTY|OK
+compoundcurvez0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+compoundcurvez0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
+compoundcurvez0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvez1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+compoundcurvez1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;COMPOUNDCURVE Z EMPTY|OK
+compoundcurvez1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+compoundcurvez1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
+compoundcurvez1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvez1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+compoundcurvezm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
+compoundcurvezm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+compoundcurvezm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;COMPOUNDCURVE ZM EMPTY|OK
+compoundcurvezm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+compoundcurvezm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
+compoundcurvezm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+compoundcurvezm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;COMPOUNDCURVE ZM EMPTY|OK
+compoundcurvezm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+compoundcurvezm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
+compoundcurvezm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+compoundcurvezm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;COMPOUNDCURVE ZM EMPTY|OK
+compoundcurvezm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+compoundcurvezm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
+compoundcurvezm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+compoundcurvezm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;COMPOUNDCURVE ZM EMPTY|OK
+compoundcurvezm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+compoundcurvezm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+compoundcurvezm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
+compoundcurvezm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+compoundcurvezm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;COMPOUNDCURVE ZM EMPTY|OK
+compoundcurvezm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CompoundCurve)
+compoundcurvezm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CompoundCurve)
+curvepolygon|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;CURVEPOLYGON EMPTY|OK
+curvepolygon|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+curvepolygon|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
+curvepolygon|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+curvepolygon|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;CURVEPOLYGON EMPTY|OK
+curvepolygon|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+curvepolygon|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
+curvepolygon|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+curvepolygon|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;CURVEPOLYGON EMPTY|OK
+curvepolygon0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+curvepolygon0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
+curvepolygon0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+curvepolygon0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;CURVEPOLYGON EMPTY|OK
+curvepolygon0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+curvepolygon0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
+curvepolygon0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+curvepolygon0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygon1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;CURVEPOLYGON EMPTY|OK
+curvepolygon1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+curvepolygon1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
+curvepolygon1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+curvepolygon1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygon1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
+curvepolygonm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+curvepolygonm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;CURVEPOLYGON M EMPTY|OK
+curvepolygonm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+curvepolygonm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
+curvepolygonm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+curvepolygonm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;CURVEPOLYGON M EMPTY|OK
+curvepolygonm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+curvepolygonm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
+curvepolygonm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+curvepolygonm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;CURVEPOLYGON M EMPTY|OK
+curvepolygonm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+curvepolygonm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
+curvepolygonm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+curvepolygonm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;CURVEPOLYGON M EMPTY|OK
+curvepolygonm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+curvepolygonm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
+curvepolygonm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+curvepolygonm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;CURVEPOLYGON M EMPTY|OK
+curvepolygonm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+curvepolygonm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+curvepolygonz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;CURVEPOLYGON Z EMPTY|OK
+curvepolygonz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+curvepolygonz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+curvepolygonz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+curvepolygonz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;CURVEPOLYGON Z EMPTY|OK
+curvepolygonz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+curvepolygonz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+curvepolygonz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+curvepolygonz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;CURVEPOLYGON Z EMPTY|OK
+curvepolygonz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+curvepolygonz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+curvepolygonz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+curvepolygonz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;CURVEPOLYGON Z EMPTY|OK
+curvepolygonz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+curvepolygonz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+curvepolygonz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+curvepolygonz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;CURVEPOLYGON Z EMPTY|OK
+curvepolygonz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+curvepolygonz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+curvepolygonz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+curvepolygonzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
+curvepolygonzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+curvepolygonzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;CURVEPOLYGON ZM EMPTY|OK
+curvepolygonzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+curvepolygonzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
+curvepolygonzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+curvepolygonzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;CURVEPOLYGON ZM EMPTY|OK
+curvepolygonzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+curvepolygonzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
+curvepolygonzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+curvepolygonzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;CURVEPOLYGON ZM EMPTY|OK
+curvepolygonzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+curvepolygonzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
+curvepolygonzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+curvepolygonzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;CURVEPOLYGON ZM EMPTY|OK
+curvepolygonzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+curvepolygonzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+curvepolygonzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
+curvepolygonzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+curvepolygonzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;CURVEPOLYGON ZM EMPTY|OK
+curvepolygonzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (CurvePolygon)
+curvepolygonzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (CurvePolygon)
+geometry|SRID=0;POINT EMPTY|OK
+geometry|SRID=0;LINESTRING EMPTY|OK
+geometry|SRID=0;POLYGON EMPTY|OK
+geometry|SRID=0;MULTIPOINT EMPTY|OK
+geometry|SRID=0;MULTILINESTRING EMPTY|OK
+geometry|SRID=0;MULTIPOLYGON EMPTY|OK
+geometry|SRID=0;GEOMETRYCOLLECTION EMPTY|OK
+geometry|SRID=0;CIRCULARSTRING EMPTY|OK
+geometry|SRID=0;COMPOUNDCURVE EMPTY|OK
+geometry|SRID=0;CURVEPOLYGON EMPTY|OK
+geometry|SRID=0;MULTICURVE EMPTY|OK
+geometry|SRID=0;MULTISURFACE EMPTY|OK
+geometry|SRID=0;POLYHEDRALSURFACE EMPTY|OK
+geometry|SRID=0;TRIANGLE EMPTY|OK
+geometry|SRID=0;TIN EMPTY|OK
+geometry|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;POINT M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=0;LINESTRING M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=0;POLYGON M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=0;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=0;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=0;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=0;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=0;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=0;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=0;MULTICURVE M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=0;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=0;TRIANGLE M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;POINT EMPTY|OK
+geometry|SRID=1;LINESTRING EMPTY|OK
+geometry|SRID=1;POLYGON EMPTY|OK
+geometry|SRID=1;MULTIPOINT EMPTY|OK
+geometry|SRID=1;MULTILINESTRING EMPTY|OK
+geometry|SRID=1;MULTIPOLYGON EMPTY|OK
+geometry|SRID=1;GEOMETRYCOLLECTION EMPTY|OK
+geometry|SRID=1;CIRCULARSTRING EMPTY|OK
+geometry|SRID=1;COMPOUNDCURVE EMPTY|OK
+geometry|SRID=1;CURVEPOLYGON EMPTY|OK
+geometry|SRID=1;MULTICURVE EMPTY|OK
+geometry|SRID=1;MULTISURFACE EMPTY|OK
+geometry|SRID=1;POLYHEDRALSURFACE EMPTY|OK
+geometry|SRID=1;TRIANGLE EMPTY|OK
+geometry|SRID=1;TIN EMPTY|OK
+geometry|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;POINT M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=1;LINESTRING M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=1;POLYGON M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=1;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=1;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=1;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=1;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=1;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=1;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=1;MULTICURVE M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=1;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=1;TRIANGLE M EMPTY|Geometry has M dimension but column does not
+geometry|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometry|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;POINT EMPTY|OK
+geometry0|SRID=0;LINESTRING EMPTY|OK
+geometry0|SRID=0;POLYGON EMPTY|OK
+geometry0|SRID=0;MULTIPOINT EMPTY|OK
+geometry0|SRID=0;MULTILINESTRING EMPTY|OK
+geometry0|SRID=0;MULTIPOLYGON EMPTY|OK
+geometry0|SRID=0;GEOMETRYCOLLECTION EMPTY|OK
+geometry0|SRID=0;CIRCULARSTRING EMPTY|OK
+geometry0|SRID=0;COMPOUNDCURVE EMPTY|OK
+geometry0|SRID=0;CURVEPOLYGON EMPTY|OK
+geometry0|SRID=0;MULTICURVE EMPTY|OK
+geometry0|SRID=0;MULTISURFACE EMPTY|OK
+geometry0|SRID=0;POLYHEDRALSURFACE EMPTY|OK
+geometry0|SRID=0;TRIANGLE EMPTY|OK
+geometry0|SRID=0;TIN EMPTY|OK
+geometry0|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;POINT M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=0;LINESTRING M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=0;POLYGON M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=0;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=0;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=0;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=0;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=0;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=0;MULTICURVE M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=0;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=0;TRIANGLE M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;POINT EMPTY|OK
+geometry0|SRID=1;LINESTRING EMPTY|OK
+geometry0|SRID=1;POLYGON EMPTY|OK
+geometry0|SRID=1;MULTIPOINT EMPTY|OK
+geometry0|SRID=1;MULTILINESTRING EMPTY|OK
+geometry0|SRID=1;MULTIPOLYGON EMPTY|OK
+geometry0|SRID=1;GEOMETRYCOLLECTION EMPTY|OK
+geometry0|SRID=1;CIRCULARSTRING EMPTY|OK
+geometry0|SRID=1;COMPOUNDCURVE EMPTY|OK
+geometry0|SRID=1;CURVEPOLYGON EMPTY|OK
+geometry0|SRID=1;MULTICURVE EMPTY|OK
+geometry0|SRID=1;MULTISURFACE EMPTY|OK
+geometry0|SRID=1;POLYHEDRALSURFACE EMPTY|OK
+geometry0|SRID=1;TRIANGLE EMPTY|OK
+geometry0|SRID=1;TIN EMPTY|OK
+geometry0|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;POINT M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=1;LINESTRING M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=1;POLYGON M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=1;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=1;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=1;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=1;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=1;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=1;MULTICURVE M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=1;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=1;TRIANGLE M EMPTY|Geometry has M dimension but column does not
+geometry0|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometry0|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometry1|SRID=1;POINT EMPTY|OK
+geometry1|SRID=1;LINESTRING EMPTY|OK
+geometry1|SRID=1;POLYGON EMPTY|OK
+geometry1|SRID=1;MULTIPOINT EMPTY|OK
+geometry1|SRID=1;MULTILINESTRING EMPTY|OK
+geometry1|SRID=1;MULTIPOLYGON EMPTY|OK
+geometry1|SRID=1;GEOMETRYCOLLECTION EMPTY|OK
+geometry1|SRID=1;CIRCULARSTRING EMPTY|OK
+geometry1|SRID=1;COMPOUNDCURVE EMPTY|OK
+geometry1|SRID=1;CURVEPOLYGON EMPTY|OK
+geometry1|SRID=1;MULTICURVE EMPTY|OK
+geometry1|SRID=1;MULTISURFACE EMPTY|OK
+geometry1|SRID=1;POLYHEDRALSURFACE EMPTY|OK
+geometry1|SRID=1;TRIANGLE EMPTY|OK
+geometry1|SRID=1;TIN EMPTY|OK
+geometry1|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;POINT M EMPTY|Geometry has M dimension but column does not
+geometry1|SRID=1;LINESTRING M EMPTY|Geometry has M dimension but column does not
+geometry1|SRID=1;POLYGON M EMPTY|Geometry has M dimension but column does not
+geometry1|SRID=1;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
+geometry1|SRID=1;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
+geometry1|SRID=1;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
+geometry1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
+geometry1|SRID=1;CIRCULARSTRING M EMPTY|Geometry has M dimension but column does not
+geometry1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry has M dimension but column does not
+geometry1|SRID=1;CURVEPOLYGON M EMPTY|Geometry has M dimension but column does not
+geometry1|SRID=1;MULTICURVE M EMPTY|Geometry has M dimension but column does not
+geometry1|SRID=1;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
+geometry1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
+geometry1|SRID=1;TRIANGLE M EMPTY|Geometry has M dimension but column does not
+geometry1|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometry1|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+geometrycollection|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;GEOMETRYCOLLECTION EMPTY|OK
+geometrycollection|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrycollection|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
+geometrycollection|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrycollection|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;GEOMETRYCOLLECTION EMPTY|OK
+geometrycollection|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrycollection|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
+geometrycollection|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrycollection|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;GEOMETRYCOLLECTION EMPTY|OK
+geometrycollection0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrycollection0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
+geometrycollection0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrycollection0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;GEOMETRYCOLLECTION EMPTY|OK
+geometrycollection0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrycollection0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
+geometrycollection0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrycollection0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollection1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;GEOMETRYCOLLECTION EMPTY|OK
+geometrycollection1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrycollection1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry has M dimension but column does not
+geometrycollection1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrycollection1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollection1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
+geometrycollectionm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrycollectionm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;GEOMETRYCOLLECTION M EMPTY|OK
+geometrycollectionm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrycollectionm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
+geometrycollectionm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrycollectionm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;GEOMETRYCOLLECTION M EMPTY|OK
+geometrycollectionm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrycollectionm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
+geometrycollectionm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrycollectionm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|OK
+geometrycollectionm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrycollectionm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
+geometrycollectionm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrycollectionm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|OK
+geometrycollectionm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrycollectionm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
+geometrycollectionm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrycollectionm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|OK
+geometrycollectionm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrycollectionm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometrycollectionz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|OK
+geometrycollectionz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometrycollectionz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
+geometrycollectionz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometrycollectionz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|OK
+geometrycollectionz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometrycollectionz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
+geometrycollectionz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometrycollectionz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|OK
+geometrycollectionz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometrycollectionz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
+geometrycollectionz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometrycollectionz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|OK
+geometrycollectionz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometrycollectionz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
+geometrycollectionz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometrycollectionz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|OK
+geometrycollectionz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometrycollectionz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
+geometrycollectionz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometrycollectionzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
+geometrycollectionzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometrycollectionzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|OK
+geometrycollectionzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometrycollectionzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
+geometrycollectionzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometrycollectionzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|OK
+geometrycollectionzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometrycollectionzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
+geometrycollectionzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometrycollectionzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|OK
+geometrycollectionzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometrycollectionzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
+geometrycollectionzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometrycollectionzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|OK
+geometrycollectionzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrycollectionzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometrycollectionzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
+geometrycollectionzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometrycollectionzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|OK
+geometrycollectionzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (GeometryCollection)
+geometrycollectionzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (GeometryCollection)
+geometrym|SRID=0;POINT EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;LINESTRING EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;POLYGON EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;MULTIPOINT EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;MULTICURVE EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;MULTISURFACE EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;TRIANGLE EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;TIN EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;POINT M EMPTY|OK
+geometrym|SRID=0;LINESTRING M EMPTY|OK
+geometrym|SRID=0;POLYGON M EMPTY|OK
+geometrym|SRID=0;MULTIPOINT M EMPTY|OK
+geometrym|SRID=0;MULTILINESTRING M EMPTY|OK
+geometrym|SRID=0;MULTIPOLYGON M EMPTY|OK
+geometrym|SRID=0;GEOMETRYCOLLECTION M EMPTY|OK
+geometrym|SRID=0;CIRCULARSTRING M EMPTY|OK
+geometrym|SRID=0;COMPOUNDCURVE M EMPTY|OK
+geometrym|SRID=0;CURVEPOLYGON M EMPTY|OK
+geometrym|SRID=0;MULTICURVE M EMPTY|OK
+geometrym|SRID=0;MULTISURFACE M EMPTY|OK
+geometrym|SRID=0;POLYHEDRALSURFACE M EMPTY|OK
+geometrym|SRID=0;TRIANGLE M EMPTY|OK
+geometrym|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;POINT EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;LINESTRING EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;POLYGON EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;MULTIPOINT EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;MULTICURVE EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;MULTISURFACE EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;TRIANGLE EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;TIN EMPTY|Column has M dimension but geometry does not
+geometrym|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;POINT M EMPTY|OK
+geometrym|SRID=1;LINESTRING M EMPTY|OK
+geometrym|SRID=1;POLYGON M EMPTY|OK
+geometrym|SRID=1;MULTIPOINT M EMPTY|OK
+geometrym|SRID=1;MULTILINESTRING M EMPTY|OK
+geometrym|SRID=1;MULTIPOLYGON M EMPTY|OK
+geometrym|SRID=1;GEOMETRYCOLLECTION M EMPTY|OK
+geometrym|SRID=1;CIRCULARSTRING M EMPTY|OK
+geometrym|SRID=1;COMPOUNDCURVE M EMPTY|OK
+geometrym|SRID=1;CURVEPOLYGON M EMPTY|OK
+geometrym|SRID=1;MULTICURVE M EMPTY|OK
+geometrym|SRID=1;MULTISURFACE M EMPTY|OK
+geometrym|SRID=1;POLYHEDRALSURFACE M EMPTY|OK
+geometrym|SRID=1;TRIANGLE M EMPTY|OK
+geometrym|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;POINT EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;LINESTRING EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;POLYGON EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;MULTIPOINT EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;MULTICURVE EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;MULTISURFACE EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;TRIANGLE EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;TIN EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;POINT M EMPTY|OK
+geometrym0|SRID=0;LINESTRING M EMPTY|OK
+geometrym0|SRID=0;POLYGON M EMPTY|OK
+geometrym0|SRID=0;MULTIPOINT M EMPTY|OK
+geometrym0|SRID=0;MULTILINESTRING M EMPTY|OK
+geometrym0|SRID=0;MULTIPOLYGON M EMPTY|OK
+geometrym0|SRID=0;GEOMETRYCOLLECTION M EMPTY|OK
+geometrym0|SRID=0;CIRCULARSTRING M EMPTY|OK
+geometrym0|SRID=0;COMPOUNDCURVE M EMPTY|OK
+geometrym0|SRID=0;CURVEPOLYGON M EMPTY|OK
+geometrym0|SRID=0;MULTICURVE M EMPTY|OK
+geometrym0|SRID=0;MULTISURFACE M EMPTY|OK
+geometrym0|SRID=0;POLYHEDRALSURFACE M EMPTY|OK
+geometrym0|SRID=0;TRIANGLE M EMPTY|OK
+geometrym0|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;POINT EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;LINESTRING EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;POLYGON EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;MULTIPOINT EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;MULTICURVE EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;MULTISURFACE EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;TRIANGLE EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;TIN EMPTY|Column has M dimension but geometry does not
+geometrym0|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;POINT M EMPTY|OK
+geometrym0|SRID=1;LINESTRING M EMPTY|OK
+geometrym0|SRID=1;POLYGON M EMPTY|OK
+geometrym0|SRID=1;MULTIPOINT M EMPTY|OK
+geometrym0|SRID=1;MULTILINESTRING M EMPTY|OK
+geometrym0|SRID=1;MULTIPOLYGON M EMPTY|OK
+geometrym0|SRID=1;GEOMETRYCOLLECTION M EMPTY|OK
+geometrym0|SRID=1;CIRCULARSTRING M EMPTY|OK
+geometrym0|SRID=1;COMPOUNDCURVE M EMPTY|OK
+geometrym0|SRID=1;CURVEPOLYGON M EMPTY|OK
+geometrym0|SRID=1;MULTICURVE M EMPTY|OK
+geometrym0|SRID=1;MULTISURFACE M EMPTY|OK
+geometrym0|SRID=1;POLYHEDRALSURFACE M EMPTY|OK
+geometrym0|SRID=1;TRIANGLE M EMPTY|OK
+geometrym0|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym0|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometrym1|SRID=1;POINT EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;LINESTRING EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;POLYGON EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;MULTIPOINT EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;CIRCULARSTRING EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;COMPOUNDCURVE EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;CURVEPOLYGON EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;MULTICURVE EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;MULTISURFACE EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;TRIANGLE EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;TIN EMPTY|Column has M dimension but geometry does not
+geometrym1|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;POINT M EMPTY|OK
+geometrym1|SRID=1;LINESTRING M EMPTY|OK
+geometrym1|SRID=1;POLYGON M EMPTY|OK
+geometrym1|SRID=1;MULTIPOINT M EMPTY|OK
+geometrym1|SRID=1;MULTILINESTRING M EMPTY|OK
+geometrym1|SRID=1;MULTIPOLYGON M EMPTY|OK
+geometrym1|SRID=1;GEOMETRYCOLLECTION M EMPTY|OK
+geometrym1|SRID=1;CIRCULARSTRING M EMPTY|OK
+geometrym1|SRID=1;COMPOUNDCURVE M EMPTY|OK
+geometrym1|SRID=1;CURVEPOLYGON M EMPTY|OK
+geometrym1|SRID=1;MULTICURVE M EMPTY|OK
+geometrym1|SRID=1;MULTISURFACE M EMPTY|OK
+geometrym1|SRID=1;POLYHEDRALSURFACE M EMPTY|OK
+geometrym1|SRID=1;TRIANGLE M EMPTY|OK
+geometrym1|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+geometrym1|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+geometryz|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;POINT Z EMPTY|OK
+geometryz|SRID=0;LINESTRING Z EMPTY|OK
+geometryz|SRID=0;POLYGON Z EMPTY|OK
+geometryz|SRID=0;MULTIPOINT Z EMPTY|OK
+geometryz|SRID=0;MULTILINESTRING Z EMPTY|OK
+geometryz|SRID=0;MULTIPOLYGON Z EMPTY|OK
+geometryz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|OK
+geometryz|SRID=0;CIRCULARSTRING Z EMPTY|OK
+geometryz|SRID=0;COMPOUNDCURVE Z EMPTY|OK
+geometryz|SRID=0;CURVEPOLYGON Z EMPTY|OK
+geometryz|SRID=0;MULTICURVE Z EMPTY|OK
+geometryz|SRID=0;MULTISURFACE Z EMPTY|OK
+geometryz|SRID=0;POLYHEDRALSURFACE Z EMPTY|OK
+geometryz|SRID=0;TRIANGLE Z EMPTY|OK
+geometryz|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=0;POINT ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=0;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=0;POLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=0;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=0;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=0;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=0;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;POINT Z EMPTY|OK
+geometryz|SRID=1;LINESTRING Z EMPTY|OK
+geometryz|SRID=1;POLYGON Z EMPTY|OK
+geometryz|SRID=1;MULTIPOINT Z EMPTY|OK
+geometryz|SRID=1;MULTILINESTRING Z EMPTY|OK
+geometryz|SRID=1;MULTIPOLYGON Z EMPTY|OK
+geometryz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|OK
+geometryz|SRID=1;CIRCULARSTRING Z EMPTY|OK
+geometryz|SRID=1;COMPOUNDCURVE Z EMPTY|OK
+geometryz|SRID=1;CURVEPOLYGON Z EMPTY|OK
+geometryz|SRID=1;MULTICURVE Z EMPTY|OK
+geometryz|SRID=1;MULTISURFACE Z EMPTY|OK
+geometryz|SRID=1;POLYHEDRALSURFACE Z EMPTY|OK
+geometryz|SRID=1;TRIANGLE Z EMPTY|OK
+geometryz|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+geometryz|SRID=1;POINT ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=1;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=1;POLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=1;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=1;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=1;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
+geometryz|SRID=1;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;POINT Z EMPTY|OK
+geometryz0|SRID=0;LINESTRING Z EMPTY|OK
+geometryz0|SRID=0;POLYGON Z EMPTY|OK
+geometryz0|SRID=0;MULTIPOINT Z EMPTY|OK
+geometryz0|SRID=0;MULTILINESTRING Z EMPTY|OK
+geometryz0|SRID=0;MULTIPOLYGON Z EMPTY|OK
+geometryz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|OK
+geometryz0|SRID=0;CIRCULARSTRING Z EMPTY|OK
+geometryz0|SRID=0;COMPOUNDCURVE Z EMPTY|OK
+geometryz0|SRID=0;CURVEPOLYGON Z EMPTY|OK
+geometryz0|SRID=0;MULTICURVE Z EMPTY|OK
+geometryz0|SRID=0;MULTISURFACE Z EMPTY|OK
+geometryz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|OK
+geometryz0|SRID=0;TRIANGLE Z EMPTY|OK
+geometryz0|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=0;POINT ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=0;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=0;POLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=0;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=0;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;POINT Z EMPTY|OK
+geometryz0|SRID=1;LINESTRING Z EMPTY|OK
+geometryz0|SRID=1;POLYGON Z EMPTY|OK
+geometryz0|SRID=1;MULTIPOINT Z EMPTY|OK
+geometryz0|SRID=1;MULTILINESTRING Z EMPTY|OK
+geometryz0|SRID=1;MULTIPOLYGON Z EMPTY|OK
+geometryz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|OK
+geometryz0|SRID=1;CIRCULARSTRING Z EMPTY|OK
+geometryz0|SRID=1;COMPOUNDCURVE Z EMPTY|OK
+geometryz0|SRID=1;CURVEPOLYGON Z EMPTY|OK
+geometryz0|SRID=1;MULTICURVE Z EMPTY|OK
+geometryz0|SRID=1;MULTISURFACE Z EMPTY|OK
+geometryz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|OK
+geometryz0|SRID=1;TRIANGLE Z EMPTY|OK
+geometryz0|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+geometryz0|SRID=1;POINT ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=1;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=1;POLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=1;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
+geometryz0|SRID=1;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
+geometryz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryz1|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;POINT Z EMPTY|OK
+geometryz1|SRID=1;LINESTRING Z EMPTY|OK
+geometryz1|SRID=1;POLYGON Z EMPTY|OK
+geometryz1|SRID=1;MULTIPOINT Z EMPTY|OK
+geometryz1|SRID=1;MULTILINESTRING Z EMPTY|OK
+geometryz1|SRID=1;MULTIPOLYGON Z EMPTY|OK
+geometryz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|OK
+geometryz1|SRID=1;CIRCULARSTRING Z EMPTY|OK
+geometryz1|SRID=1;COMPOUNDCURVE Z EMPTY|OK
+geometryz1|SRID=1;CURVEPOLYGON Z EMPTY|OK
+geometryz1|SRID=1;MULTICURVE Z EMPTY|OK
+geometryz1|SRID=1;MULTISURFACE Z EMPTY|OK
+geometryz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|OK
+geometryz1|SRID=1;TRIANGLE Z EMPTY|OK
+geometryz1|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+geometryz1|SRID=1;POINT ZM EMPTY|Geometry has M dimension but column does not
+geometryz1|SRID=1;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz1|SRID=1;POLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
+geometryz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry has M dimension but column does not
+geometryz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry has M dimension but column does not
+geometryz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry has M dimension but column does not
+geometryz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+geometryz1|SRID=1;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
+geometryz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
+geometryz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
+geometryz1|SRID=1;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
+geometryzm|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;POINT Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=0;LINESTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=0;POLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=0;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=0;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=0;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=0;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=0;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=0;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=0;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=0;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=0;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=0;POINT ZM EMPTY|OK
+geometryzm|SRID=0;LINESTRING ZM EMPTY|OK
+geometryzm|SRID=0;POLYGON ZM EMPTY|OK
+geometryzm|SRID=0;MULTIPOINT ZM EMPTY|OK
+geometryzm|SRID=0;MULTILINESTRING ZM EMPTY|OK
+geometryzm|SRID=0;MULTIPOLYGON ZM EMPTY|OK
+geometryzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|OK
+geometryzm|SRID=0;CIRCULARSTRING ZM EMPTY|OK
+geometryzm|SRID=0;COMPOUNDCURVE ZM EMPTY|OK
+geometryzm|SRID=0;CURVEPOLYGON ZM EMPTY|OK
+geometryzm|SRID=0;MULTICURVE ZM EMPTY|OK
+geometryzm|SRID=0;MULTISURFACE ZM EMPTY|OK
+geometryzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|OK
+geometryzm|SRID=0;TRIANGLE ZM EMPTY|OK
+geometryzm|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;POINT Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=1;LINESTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=1;POLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=1;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=1;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=1;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=1;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=1;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=1;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=1;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=1;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=1;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
+geometryzm|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+geometryzm|SRID=1;POINT ZM EMPTY|OK
+geometryzm|SRID=1;LINESTRING ZM EMPTY|OK
+geometryzm|SRID=1;POLYGON ZM EMPTY|OK
+geometryzm|SRID=1;MULTIPOINT ZM EMPTY|OK
+geometryzm|SRID=1;MULTILINESTRING ZM EMPTY|OK
+geometryzm|SRID=1;MULTIPOLYGON ZM EMPTY|OK
+geometryzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|OK
+geometryzm|SRID=1;CIRCULARSTRING ZM EMPTY|OK
+geometryzm|SRID=1;COMPOUNDCURVE ZM EMPTY|OK
+geometryzm|SRID=1;CURVEPOLYGON ZM EMPTY|OK
+geometryzm|SRID=1;MULTICURVE ZM EMPTY|OK
+geometryzm|SRID=1;MULTISURFACE ZM EMPTY|OK
+geometryzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|OK
+geometryzm|SRID=1;TRIANGLE ZM EMPTY|OK
+geometryzm0|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;POINT Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=0;LINESTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=0;POLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=0;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=0;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=0;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=0;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=0;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=0;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=0;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=0;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=0;POINT ZM EMPTY|OK
+geometryzm0|SRID=0;LINESTRING ZM EMPTY|OK
+geometryzm0|SRID=0;POLYGON ZM EMPTY|OK
+geometryzm0|SRID=0;MULTIPOINT ZM EMPTY|OK
+geometryzm0|SRID=0;MULTILINESTRING ZM EMPTY|OK
+geometryzm0|SRID=0;MULTIPOLYGON ZM EMPTY|OK
+geometryzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|OK
+geometryzm0|SRID=0;CIRCULARSTRING ZM EMPTY|OK
+geometryzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|OK
+geometryzm0|SRID=0;CURVEPOLYGON ZM EMPTY|OK
+geometryzm0|SRID=0;MULTICURVE ZM EMPTY|OK
+geometryzm0|SRID=0;MULTISURFACE ZM EMPTY|OK
+geometryzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|OK
+geometryzm0|SRID=0;TRIANGLE ZM EMPTY|OK
+geometryzm0|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;POINT Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=1;LINESTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=1;POLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=1;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=1;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=1;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=1;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=1;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=1;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=1;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=1;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
+geometryzm0|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+geometryzm0|SRID=1;POINT ZM EMPTY|OK
+geometryzm0|SRID=1;LINESTRING ZM EMPTY|OK
+geometryzm0|SRID=1;POLYGON ZM EMPTY|OK
+geometryzm0|SRID=1;MULTIPOINT ZM EMPTY|OK
+geometryzm0|SRID=1;MULTILINESTRING ZM EMPTY|OK
+geometryzm0|SRID=1;MULTIPOLYGON ZM EMPTY|OK
+geometryzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|OK
+geometryzm0|SRID=1;CIRCULARSTRING ZM EMPTY|OK
+geometryzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|OK
+geometryzm0|SRID=1;CURVEPOLYGON ZM EMPTY|OK
+geometryzm0|SRID=1;MULTICURVE ZM EMPTY|OK
+geometryzm0|SRID=1;MULTISURFACE ZM EMPTY|OK
+geometryzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|OK
+geometryzm0|SRID=1;TRIANGLE ZM EMPTY|OK
+geometryzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+geometryzm1|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;CIRCULARSTRING EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;COMPOUNDCURVE EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;CURVEPOLYGON EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;POINT Z EMPTY|Column has M dimension but geometry does not
+geometryzm1|SRID=1;LINESTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm1|SRID=1;POLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm1|SRID=1;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
+geometryzm1|SRID=1;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm1|SRID=1;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Column has M dimension but geometry does not
+geometryzm1|SRID=1;CIRCULARSTRING Z EMPTY|Column has M dimension but geometry does not
+geometryzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Column has M dimension but geometry does not
+geometryzm1|SRID=1;CURVEPOLYGON Z EMPTY|Column has M dimension but geometry does not
+geometryzm1|SRID=1;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
+geometryzm1|SRID=1;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
+geometryzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
+geometryzm1|SRID=1;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
+geometryzm1|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;CIRCULARSTRING M EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;COMPOUNDCURVE M EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;CURVEPOLYGON M EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+geometryzm1|SRID=1;POINT ZM EMPTY|OK
+geometryzm1|SRID=1;LINESTRING ZM EMPTY|OK
+geometryzm1|SRID=1;POLYGON ZM EMPTY|OK
+geometryzm1|SRID=1;MULTIPOINT ZM EMPTY|OK
+geometryzm1|SRID=1;MULTILINESTRING ZM EMPTY|OK
+geometryzm1|SRID=1;MULTIPOLYGON ZM EMPTY|OK
+geometryzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|OK
+geometryzm1|SRID=1;CIRCULARSTRING ZM EMPTY|OK
+geometryzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|OK
+geometryzm1|SRID=1;CURVEPOLYGON ZM EMPTY|OK
+geometryzm1|SRID=1;MULTICURVE ZM EMPTY|OK
+geometryzm1|SRID=1;MULTISURFACE ZM EMPTY|OK
+geometryzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|OK
+geometryzm1|SRID=1;TRIANGLE ZM EMPTY|OK
+linestring|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=0;LINESTRING EMPTY|OK
+linestring|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestring|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+linestring|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=0;LINESTRING M EMPTY|Geometry has M dimension but column does not
+linestring|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+linestring|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=1;LINESTRING EMPTY|OK
+linestring|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestring|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+linestring|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=1;LINESTRING M EMPTY|Geometry has M dimension but column does not
+linestring|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+linestring|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=0;LINESTRING EMPTY|OK
+linestring0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestring0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+linestring0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=0;LINESTRING M EMPTY|Geometry has M dimension but column does not
+linestring0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+linestring0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=1;LINESTRING EMPTY|OK
+linestring0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestring0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+linestring0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=1;LINESTRING M EMPTY|Geometry has M dimension but column does not
+linestring0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+linestring0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestring1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring1|SRID=1;LINESTRING EMPTY|OK
+linestring1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestring1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring1|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+linestring1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring1|SRID=1;LINESTRING M EMPTY|Geometry has M dimension but column does not
+linestring1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestring1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring1|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+linestring1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestring1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestring1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestring1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestring1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestring1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestring1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestring1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestring1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestring1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestring1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestring1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=0;LINESTRING EMPTY|Column has M dimension but geometry does not
+linestringm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+linestringm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=0;LINESTRING M EMPTY|OK
+linestringm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+linestringm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=1;LINESTRING EMPTY|Column has M dimension but geometry does not
+linestringm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+linestringm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=1;LINESTRING M EMPTY|OK
+linestringm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+linestringm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=0;LINESTRING EMPTY|Column has M dimension but geometry does not
+linestringm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=0;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+linestringm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=0;LINESTRING M EMPTY|OK
+linestringm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=0;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+linestringm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=1;LINESTRING EMPTY|Column has M dimension but geometry does not
+linestringm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+linestringm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=1;LINESTRING M EMPTY|OK
+linestringm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+linestringm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm1|SRID=1;LINESTRING EMPTY|Column has M dimension but geometry does not
+linestringm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm1|SRID=1;LINESTRING Z EMPTY|Geometry has Z dimension but column does not
+linestringm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm1|SRID=1;LINESTRING M EMPTY|OK
+linestringm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm1|SRID=1;LINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+linestringm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
+linestringz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=0;LINESTRING Z EMPTY|OK
+linestringz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+linestringz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=0;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
+linestringz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
+linestringz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=1;LINESTRING Z EMPTY|OK
+linestringz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+linestringz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=1;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
+linestringz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
+linestringz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=0;LINESTRING Z EMPTY|OK
+linestringz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+linestringz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=0;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
+linestringz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
+linestringz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=1;LINESTRING Z EMPTY|OK
+linestringz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+linestringz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=1;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
+linestringz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz1|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
+linestringz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz1|SRID=1;LINESTRING Z EMPTY|OK
+linestringz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz1|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+linestringz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz1|SRID=1;LINESTRING ZM EMPTY|Geometry has M dimension but column does not
+linestringz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
+linestringzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=0;LINESTRING Z EMPTY|Column has M dimension but geometry does not
+linestringzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+linestringzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=0;LINESTRING ZM EMPTY|OK
+linestringzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
+linestringzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=1;LINESTRING Z EMPTY|Column has M dimension but geometry does not
+linestringzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+linestringzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=1;LINESTRING ZM EMPTY|OK
+linestringzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=0;LINESTRING EMPTY|Column has Z dimension but geometry does not
+linestringzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=0;LINESTRING Z EMPTY|Column has M dimension but geometry does not
+linestringzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=0;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+linestringzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=0;LINESTRING ZM EMPTY|OK
+linestringzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
+linestringzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=1;LINESTRING Z EMPTY|Column has M dimension but geometry does not
+linestringzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+linestringzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=1;LINESTRING ZM EMPTY|OK
+linestringzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+linestringzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm1|SRID=1;LINESTRING EMPTY|Column has Z dimension but geometry does not
+linestringzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (LineString)
+linestringzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm1|SRID=1;LINESTRING Z EMPTY|Column has M dimension but geometry does not
+linestringzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm1|SRID=1;LINESTRING M EMPTY|Column has Z dimension but geometry does not
+linestringzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (LineString)
+linestringzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm1|SRID=1;LINESTRING ZM EMPTY|OK
+linestringzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (LineString)
+linestringzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (LineString)
+linestringzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (LineString)
+linestringzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (LineString)
+linestringzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (LineString)
+linestringzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (LineString)
+linestringzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (LineString)
+linestringzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (LineString)
+linestringzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (LineString)
+linestringzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (LineString)
+linestringzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (LineString)
+linestringzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (LineString)
+multicurve|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTICURVE EMPTY|OK
+multicurve|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurve|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+multicurve|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTICURVE M EMPTY|Geometry has M dimension but column does not
+multicurve|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+multicurve|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTICURVE EMPTY|OK
+multicurve|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurve|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+multicurve|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTICURVE M EMPTY|Geometry has M dimension but column does not
+multicurve|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+multicurve|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTICURVE EMPTY|OK
+multicurve0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurve0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+multicurve0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTICURVE M EMPTY|Geometry has M dimension but column does not
+multicurve0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve0|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+multicurve0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTICURVE EMPTY|OK
+multicurve0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurve0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+multicurve0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTICURVE M EMPTY|Geometry has M dimension but column does not
+multicurve0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve0|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+multicurve0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurve1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTICURVE EMPTY|OK
+multicurve1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurve1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+multicurve1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTICURVE M EMPTY|Geometry has M dimension but column does not
+multicurve1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurve1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurve1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurve1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurve1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurve1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurve1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurve1|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+multicurve1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurve1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurve1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTICURVE EMPTY|Column has M dimension but geometry does not
+multicurvem|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvem|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+multicurvem|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTICURVE M EMPTY|OK
+multicurvem|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+multicurvem|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTICURVE EMPTY|Column has M dimension but geometry does not
+multicurvem|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvem|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+multicurvem|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTICURVE M EMPTY|OK
+multicurvem|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+multicurvem|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTICURVE EMPTY|Column has M dimension but geometry does not
+multicurvem0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvem0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+multicurvem0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTICURVE M EMPTY|OK
+multicurvem0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=0;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+multicurvem0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTICURVE EMPTY|Column has M dimension but geometry does not
+multicurvem0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvem0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+multicurvem0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTICURVE M EMPTY|OK
+multicurvem0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem0|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+multicurvem0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvem1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTICURVE EMPTY|Column has M dimension but geometry does not
+multicurvem1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvem1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTICURVE Z EMPTY|Geometry has Z dimension but column does not
+multicurvem1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTICURVE M EMPTY|OK
+multicurvem1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvem1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvem1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvem1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvem1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvem1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvem1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvem1|SRID=1;MULTICURVE ZM EMPTY|Geometry has Z dimension but column does not
+multicurvem1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvem1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvem1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+multicurvez|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvez|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTICURVE Z EMPTY|OK
+multicurvez|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+multicurvez|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez|SRID=0;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
+multicurvez|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+multicurvez|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvez|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTICURVE Z EMPTY|OK
+multicurvez|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+multicurvez|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez|SRID=1;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
+multicurvez|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+multicurvez0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvez0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTICURVE Z EMPTY|OK
+multicurvez0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+multicurvez0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=0;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
+multicurvez0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+multicurvez0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvez0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTICURVE Z EMPTY|OK
+multicurvez0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+multicurvez0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez0|SRID=1;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
+multicurvez0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvez1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+multicurvez1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvez1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTICURVE Z EMPTY|OK
+multicurvez1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+multicurvez1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvez1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvez1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvez1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvez1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvez1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvez1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvez1|SRID=1;MULTICURVE ZM EMPTY|Geometry has M dimension but column does not
+multicurvez1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvez1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvez1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+multicurvezm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvezm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
+multicurvezm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+multicurvezm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=0;MULTICURVE ZM EMPTY|OK
+multicurvezm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+multicurvezm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvezm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
+multicurvezm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+multicurvezm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm|SRID=1;MULTICURVE ZM EMPTY|OK
+multicurvezm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+multicurvezm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
+multicurvezm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+multicurvezm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;MULTICURVE ZM EMPTY|OK
+multicurvezm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+multicurvezm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
+multicurvezm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+multicurvezm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;MULTICURVE ZM EMPTY|OK
+multicurvezm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multicurvezm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTICURVE EMPTY|Column has Z dimension but geometry does not
+multicurvezm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTICURVE Z EMPTY|Column has M dimension but geometry does not
+multicurvezm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTICURVE M EMPTY|Column has Z dimension but geometry does not
+multicurvezm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;MULTICURVE ZM EMPTY|OK
+multicurvezm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiCurve)
+multicurvezm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiCurve)
+multilinestring|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTILINESTRING EMPTY|OK
+multilinestring|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestring|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+multilinestring|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
+multilinestring|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+multilinestring|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTILINESTRING EMPTY|OK
+multilinestring|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestring|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+multilinestring|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
+multilinestring|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+multilinestring|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTILINESTRING EMPTY|OK
+multilinestring0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestring0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+multilinestring0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
+multilinestring0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+multilinestring0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTILINESTRING EMPTY|OK
+multilinestring0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestring0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+multilinestring0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
+multilinestring0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+multilinestring0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestring1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTILINESTRING EMPTY|OK
+multilinestring1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestring1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+multilinestring1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTILINESTRING M EMPTY|Geometry has M dimension but column does not
+multilinestring1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestring1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestring1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+multilinestring1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestring1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestring1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestring1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestring1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestring1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestring1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestring1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
+multilinestringm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+multilinestringm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTILINESTRING M EMPTY|OK
+multilinestringm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+multilinestringm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
+multilinestringm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+multilinestringm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTILINESTRING M EMPTY|OK
+multilinestringm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+multilinestringm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
+multilinestringm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+multilinestringm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTILINESTRING M EMPTY|OK
+multilinestringm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+multilinestringm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
+multilinestringm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+multilinestringm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTILINESTRING M EMPTY|OK
+multilinestringm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+multilinestringm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTILINESTRING EMPTY|Column has M dimension but geometry does not
+multilinestringm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry has Z dimension but column does not
+multilinestringm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTILINESTRING M EMPTY|OK
+multilinestringm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has Z dimension but column does not
+multilinestringm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+multilinestringz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTILINESTRING Z EMPTY|OK
+multilinestringz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+multilinestringz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
+multilinestringz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+multilinestringz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTILINESTRING Z EMPTY|OK
+multilinestringz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+multilinestringz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
+multilinestringz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+multilinestringz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTILINESTRING Z EMPTY|OK
+multilinestringz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+multilinestringz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
+multilinestringz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+multilinestringz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTILINESTRING Z EMPTY|OK
+multilinestringz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+multilinestringz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
+multilinestringz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+multilinestringz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTILINESTRING Z EMPTY|OK
+multilinestringz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+multilinestringz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry has M dimension but column does not
+multilinestringz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+multilinestringzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
+multilinestringzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+multilinestringzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTILINESTRING ZM EMPTY|OK
+multilinestringzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+multilinestringzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
+multilinestringzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+multilinestringzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTILINESTRING ZM EMPTY|OK
+multilinestringzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+multilinestringzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
+multilinestringzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+multilinestringzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTILINESTRING ZM EMPTY|OK
+multilinestringzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+multilinestringzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
+multilinestringzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+multilinestringzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTILINESTRING ZM EMPTY|OK
+multilinestringzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multilinestringzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTILINESTRING EMPTY|Column has Z dimension but geometry does not
+multilinestringzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTILINESTRING Z EMPTY|Column has M dimension but geometry does not
+multilinestringzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTILINESTRING M EMPTY|Column has Z dimension but geometry does not
+multilinestringzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTILINESTRING ZM EMPTY|OK
+multilinestringzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiLineString)
+multilinestringzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiLineString)
+multipoint|SRID=0;POINT EMPTY|OK
+multipoint|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTIPOINT EMPTY|OK
+multipoint|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipoint|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
+multipoint|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+multipoint|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint|SRID=0;POINT M EMPTY|Geometry has M dimension but column does not
+multipoint|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
+multipoint|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
+multipoint|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+multipoint|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint|SRID=1;POINT EMPTY|OK
+multipoint|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTIPOINT EMPTY|OK
+multipoint|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipoint|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
+multipoint|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+multipoint|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint|SRID=1;POINT M EMPTY|Geometry has M dimension but column does not
+multipoint|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
+multipoint|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
+multipoint|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+multipoint|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint0|SRID=0;POINT EMPTY|OK
+multipoint0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTIPOINT EMPTY|OK
+multipoint0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipoint0|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
+multipoint0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+multipoint0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint0|SRID=0;POINT M EMPTY|Geometry has M dimension but column does not
+multipoint0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
+multipoint0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint0|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
+multipoint0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+multipoint0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint0|SRID=1;POINT EMPTY|OK
+multipoint0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTIPOINT EMPTY|OK
+multipoint0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipoint0|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
+multipoint0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+multipoint0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint0|SRID=1;POINT M EMPTY|Geometry has M dimension but column does not
+multipoint0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
+multipoint0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint0|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
+multipoint0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+multipoint0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipoint1|SRID=1;POINT EMPTY|OK
+multipoint1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTIPOINT EMPTY|OK
+multipoint1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipoint1|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
+multipoint1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+multipoint1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint1|SRID=1;POINT M EMPTY|Geometry has M dimension but column does not
+multipoint1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTIPOINT M EMPTY|Geometry has M dimension but column does not
+multipoint1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipoint1|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
+multipoint1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipoint1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+multipoint1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipoint1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipoint1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipoint1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipoint1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipoint1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipoint1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipoint1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm|SRID=0;POINT EMPTY|Column has M dimension but geometry does not
+multipointm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTIPOINT EMPTY|Column has M dimension but geometry does not
+multipointm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointm|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
+multipointm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+multipointm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm|SRID=0;POINT M EMPTY|OK
+multipointm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTIPOINT M EMPTY|OK
+multipointm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
+multipointm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+multipointm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm|SRID=1;POINT EMPTY|Column has M dimension but geometry does not
+multipointm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTIPOINT EMPTY|Column has M dimension but geometry does not
+multipointm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointm|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
+multipointm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+multipointm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm|SRID=1;POINT M EMPTY|OK
+multipointm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTIPOINT M EMPTY|OK
+multipointm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
+multipointm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+multipointm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm0|SRID=0;POINT EMPTY|Column has M dimension but geometry does not
+multipointm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTIPOINT EMPTY|Column has M dimension but geometry does not
+multipointm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointm0|SRID=0;POINT Z EMPTY|Geometry has Z dimension but column does not
+multipointm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+multipointm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm0|SRID=0;POINT M EMPTY|OK
+multipointm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTIPOINT M EMPTY|OK
+multipointm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm0|SRID=0;POINT ZM EMPTY|Geometry has Z dimension but column does not
+multipointm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+multipointm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm0|SRID=1;POINT EMPTY|Column has M dimension but geometry does not
+multipointm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTIPOINT EMPTY|Column has M dimension but geometry does not
+multipointm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointm0|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
+multipointm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+multipointm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm0|SRID=1;POINT M EMPTY|OK
+multipointm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTIPOINT M EMPTY|OK
+multipointm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm0|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
+multipointm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+multipointm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointm1|SRID=1;POINT EMPTY|Column has M dimension but geometry does not
+multipointm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTIPOINT EMPTY|Column has M dimension but geometry does not
+multipointm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointm1|SRID=1;POINT Z EMPTY|Geometry has Z dimension but column does not
+multipointm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTIPOINT Z EMPTY|Geometry has Z dimension but column does not
+multipointm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm1|SRID=1;POINT M EMPTY|OK
+multipointm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTIPOINT M EMPTY|OK
+multipointm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointm1|SRID=1;POINT ZM EMPTY|Geometry has Z dimension but column does not
+multipointm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry has Z dimension but column does not
+multipointm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
+multipointz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+multipointz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointz|SRID=0;POINT Z EMPTY|OK
+multipointz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTIPOINT Z EMPTY|OK
+multipointz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
+multipointz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+multipointz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz|SRID=0;POINT ZM EMPTY|Geometry has M dimension but column does not
+multipointz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
+multipointz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
+multipointz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+multipointz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointz|SRID=1;POINT Z EMPTY|OK
+multipointz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTIPOINT Z EMPTY|OK
+multipointz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
+multipointz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+multipointz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz|SRID=1;POINT ZM EMPTY|Geometry has M dimension but column does not
+multipointz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
+multipointz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz0|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
+multipointz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+multipointz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointz0|SRID=0;POINT Z EMPTY|OK
+multipointz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTIPOINT Z EMPTY|OK
+multipointz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz0|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
+multipointz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+multipointz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz0|SRID=0;POINT ZM EMPTY|Geometry has M dimension but column does not
+multipointz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
+multipointz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz0|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
+multipointz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+multipointz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointz0|SRID=1;POINT Z EMPTY|OK
+multipointz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTIPOINT Z EMPTY|OK
+multipointz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz0|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
+multipointz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+multipointz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz0|SRID=1;POINT ZM EMPTY|Geometry has M dimension but column does not
+multipointz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
+multipointz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointz1|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
+multipointz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+multipointz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointz1|SRID=1;POINT Z EMPTY|OK
+multipointz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTIPOINT Z EMPTY|OK
+multipointz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz1|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
+multipointz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+multipointz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointz1|SRID=1;POINT ZM EMPTY|Geometry has M dimension but column does not
+multipointz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry has M dimension but column does not
+multipointz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
+multipointzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+multipointzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointzm|SRID=0;POINT Z EMPTY|Column has M dimension but geometry does not
+multipointzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
+multipointzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
+multipointzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+multipointzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm|SRID=0;POINT ZM EMPTY|OK
+multipointzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTIPOINT ZM EMPTY|OK
+multipointzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
+multipointzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+multipointzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointzm|SRID=1;POINT Z EMPTY|Column has M dimension but geometry does not
+multipointzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
+multipointzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
+multipointzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+multipointzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm|SRID=1;POINT ZM EMPTY|OK
+multipointzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTIPOINT ZM EMPTY|OK
+multipointzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm0|SRID=0;POINT EMPTY|Column has Z dimension but geometry does not
+multipointzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+multipointzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointzm0|SRID=0;POINT Z EMPTY|Column has M dimension but geometry does not
+multipointzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
+multipointzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm0|SRID=0;POINT M EMPTY|Column has Z dimension but geometry does not
+multipointzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+multipointzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm0|SRID=0;POINT ZM EMPTY|OK
+multipointzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTIPOINT ZM EMPTY|OK
+multipointzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm0|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
+multipointzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+multipointzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointzm0|SRID=1;POINT Z EMPTY|Column has M dimension but geometry does not
+multipointzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
+multipointzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm0|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
+multipointzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+multipointzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm0|SRID=1;POINT ZM EMPTY|OK
+multipointzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTIPOINT ZM EMPTY|OK
+multipointzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipointzm1|SRID=1;POINT EMPTY|Column has Z dimension but geometry does not
+multipointzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTIPOINT EMPTY|Column has Z dimension but geometry does not
+multipointzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPoint)
+multipointzm1|SRID=1;POINT Z EMPTY|Column has M dimension but geometry does not
+multipointzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTIPOINT Z EMPTY|Column has M dimension but geometry does not
+multipointzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm1|SRID=1;POINT M EMPTY|Column has Z dimension but geometry does not
+multipointzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTIPOINT M EMPTY|Column has Z dimension but geometry does not
+multipointzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipointzm1|SRID=1;POINT ZM EMPTY|OK
+multipointzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPoint)
+multipointzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTIPOINT ZM EMPTY|OK
+multipointzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiPoint)
+multipointzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPoint)
+multipointzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPoint)
+multipointzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPoint)
+multipointzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPoint)
+multipointzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPoint)
+multipointzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPoint)
+multipointzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPoint)
+multipolygon|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTIPOLYGON EMPTY|OK
+multipolygon|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygon|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+multipolygon|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
+multipolygon|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+multipolygon|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTIPOLYGON EMPTY|OK
+multipolygon|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygon|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+multipolygon|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
+multipolygon|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+multipolygon|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTIPOLYGON EMPTY|OK
+multipolygon0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+multipolygon0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
+multipolygon0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+multipolygon0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTIPOLYGON EMPTY|OK
+multipolygon0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+multipolygon0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
+multipolygon0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+multipolygon0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygon1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTIPOLYGON EMPTY|OK
+multipolygon1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+multipolygon1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTIPOLYGON M EMPTY|Geometry has M dimension but column does not
+multipolygon1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+multipolygon1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygon1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
+multipolygonm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+multipolygonm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTIPOLYGON M EMPTY|OK
+multipolygonm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+multipolygonm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
+multipolygonm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+multipolygonm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTIPOLYGON M EMPTY|OK
+multipolygonm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+multipolygonm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
+multipolygonm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+multipolygonm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTIPOLYGON M EMPTY|OK
+multipolygonm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+multipolygonm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
+multipolygonm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+multipolygonm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTIPOLYGON M EMPTY|OK
+multipolygonm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+multipolygonm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTIPOLYGON EMPTY|Column has M dimension but geometry does not
+multipolygonm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry has Z dimension but column does not
+multipolygonm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTIPOLYGON M EMPTY|OK
+multipolygonm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has Z dimension but column does not
+multipolygonm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+multipolygonz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTIPOLYGON Z EMPTY|OK
+multipolygonz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+multipolygonz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+multipolygonz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+multipolygonz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTIPOLYGON Z EMPTY|OK
+multipolygonz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+multipolygonz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+multipolygonz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+multipolygonz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTIPOLYGON Z EMPTY|OK
+multipolygonz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+multipolygonz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+multipolygonz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+multipolygonz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTIPOLYGON Z EMPTY|OK
+multipolygonz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+multipolygonz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+multipolygonz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+multipolygonz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTIPOLYGON Z EMPTY|OK
+multipolygonz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+multipolygonz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry has M dimension but column does not
+multipolygonz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+multipolygonzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
+multipolygonzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+multipolygonzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTIPOLYGON ZM EMPTY|OK
+multipolygonzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+multipolygonzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
+multipolygonzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+multipolygonzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTIPOLYGON ZM EMPTY|OK
+multipolygonzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+multipolygonzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
+multipolygonzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+multipolygonzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTIPOLYGON ZM EMPTY|OK
+multipolygonzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+multipolygonzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
+multipolygonzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+multipolygonzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTIPOLYGON ZM EMPTY|OK
+multipolygonzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multipolygonzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTIPOLYGON EMPTY|Column has Z dimension but geometry does not
+multipolygonzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTIPOLYGON Z EMPTY|Column has M dimension but geometry does not
+multipolygonzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTIPOLYGON M EMPTY|Column has Z dimension but geometry does not
+multipolygonzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTIPOLYGON ZM EMPTY|OK
+multipolygonzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiPolygon)
+multipolygonzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiPolygon)
+multisurface|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTISURFACE EMPTY|OK
+multisurface|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurface|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+multisurface|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
+multisurface|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+multisurface|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTISURFACE EMPTY|OK
+multisurface|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurface|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+multisurface|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
+multisurface|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+multisurface|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTISURFACE EMPTY|OK
+multisurface0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurface0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+multisurface0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
+multisurface0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface0|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+multisurface0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTISURFACE EMPTY|OK
+multisurface0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurface0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+multisurface0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
+multisurface0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface0|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+multisurface0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurface1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTISURFACE EMPTY|OK
+multisurface1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurface1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+multisurface1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTISURFACE M EMPTY|Geometry has M dimension but column does not
+multisurface1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurface1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurface1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurface1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurface1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurface1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurface1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurface1|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+multisurface1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurface1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTISURFACE EMPTY|Column has M dimension but geometry does not
+multisurfacem|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacem|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+multisurfacem|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTISURFACE M EMPTY|OK
+multisurfacem|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+multisurfacem|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTISURFACE EMPTY|Column has M dimension but geometry does not
+multisurfacem|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacem|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+multisurfacem|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTISURFACE M EMPTY|OK
+multisurfacem|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+multisurfacem|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTISURFACE EMPTY|Column has M dimension but geometry does not
+multisurfacem0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+multisurfacem0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTISURFACE M EMPTY|OK
+multisurfacem0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+multisurfacem0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTISURFACE EMPTY|Column has M dimension but geometry does not
+multisurfacem0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+multisurfacem0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTISURFACE M EMPTY|OK
+multisurfacem0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+multisurfacem0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacem1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTISURFACE EMPTY|Column has M dimension but geometry does not
+multisurfacem1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTISURFACE Z EMPTY|Geometry has Z dimension but column does not
+multisurfacem1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTISURFACE M EMPTY|OK
+multisurfacem1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;MULTISURFACE ZM EMPTY|Geometry has Z dimension but column does not
+multisurfacem1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacem1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+multisurfacez|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacez|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTISURFACE Z EMPTY|OK
+multisurfacez|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+multisurfacez|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=0;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
+multisurfacez|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+multisurfacez|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacez|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTISURFACE Z EMPTY|OK
+multisurfacez|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+multisurfacez|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez|SRID=1;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
+multisurfacez|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+multisurfacez0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTISURFACE Z EMPTY|OK
+multisurfacez0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+multisurfacez0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
+multisurfacez0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+multisurfacez0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTISURFACE Z EMPTY|OK
+multisurfacez0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+multisurfacez0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
+multisurfacez0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacez1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+multisurfacez1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTISURFACE Z EMPTY|OK
+multisurfacez1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+multisurfacez1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;MULTISURFACE ZM EMPTY|Geometry has M dimension but column does not
+multisurfacez1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacez1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+multisurfacezm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
+multisurfacezm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+multisurfacezm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;MULTISURFACE ZM EMPTY|OK
+multisurfacezm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+multisurfacezm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
+multisurfacezm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+multisurfacezm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;MULTISURFACE ZM EMPTY|OK
+multisurfacezm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+multisurfacezm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
+multisurfacezm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+multisurfacezm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;MULTISURFACE ZM EMPTY|OK
+multisurfacezm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+multisurfacezm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
+multisurfacezm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+multisurfacezm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;MULTISURFACE ZM EMPTY|OK
+multisurfacezm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+multisurfacezm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTISURFACE EMPTY|Column has Z dimension but geometry does not
+multisurfacezm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTISURFACE Z EMPTY|Column has M dimension but geometry does not
+multisurfacezm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTISURFACE M EMPTY|Column has Z dimension but geometry does not
+multisurfacezm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;MULTISURFACE ZM EMPTY|OK
+multisurfacezm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (MultiSurface)
+multisurfacezm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (MultiSurface)
+point|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+point|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+point|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+point|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+point|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+point|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+point|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+point|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+point|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+point|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+point|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+point|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+point|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+point|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+point|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+point|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+point|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+point|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+point|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+point|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+point|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+point|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+point|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+point|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+point|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+point|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+point|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+point|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+point|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+point|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+point|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+point|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+point|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+point|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+point0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+point0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+point0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+point0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+point0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+point0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+point0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+point0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+point0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+point0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+point0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+point0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+point0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+point0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+point0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+point0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+point0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+point0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+point0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+point0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+point0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+point0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+point0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+point0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+point0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+point0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+point0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+point0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+point0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+point0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+point0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+point0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+point0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+point0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+point1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+point1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+point1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+point1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+point1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+point1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+point1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+point1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+point1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+point1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+point1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+point1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+point1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+point1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+point1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+point1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+point1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+point1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+point1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+point1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+point1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+point1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+point1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+point1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+point1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+point1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+point1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+pointzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Point)
+pointzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Point)
+pointzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Point)
+pointzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Point)
+pointzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Point)
+pointzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Point)
+pointzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Point)
+pointzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Point)
+pointzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Point)
+pointzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Point)
+pointzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Point)
+pointzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Point)
+pointzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Point)
+pointzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Point)
+pointzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Point)
+polygon|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon|SRID=0;POLYGON EMPTY|OK
+polygon|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygon|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+polygon|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon|SRID=0;POLYGON M EMPTY|Geometry has M dimension but column does not
+polygon|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+polygon|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon|SRID=1;POLYGON EMPTY|OK
+polygon|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygon|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+polygon|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon|SRID=1;POLYGON M EMPTY|Geometry has M dimension but column does not
+polygon|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+polygon|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon0|SRID=0;POLYGON EMPTY|OK
+polygon0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygon0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon0|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+polygon0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon0|SRID=0;POLYGON M EMPTY|Geometry has M dimension but column does not
+polygon0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon0|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+polygon0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon0|SRID=1;POLYGON EMPTY|OK
+polygon0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygon0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon0|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+polygon0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon0|SRID=1;POLYGON M EMPTY|Geometry has M dimension but column does not
+polygon0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon0|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+polygon0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygon1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon1|SRID=1;POLYGON EMPTY|OK
+polygon1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygon1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon1|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+polygon1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon1|SRID=1;POLYGON M EMPTY|Geometry has M dimension but column does not
+polygon1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygon1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygon1|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+polygon1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygon1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygon1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygon1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygon1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygon1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygon1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygon1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygon1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygon1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygon1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm|SRID=0;POLYGON EMPTY|Column has M dimension but geometry does not
+polygonm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+polygonm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm|SRID=0;POLYGON M EMPTY|OK
+polygonm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+polygonm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm|SRID=1;POLYGON EMPTY|Column has M dimension but geometry does not
+polygonm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+polygonm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm|SRID=1;POLYGON M EMPTY|OK
+polygonm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+polygonm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm0|SRID=0;POLYGON EMPTY|Column has M dimension but geometry does not
+polygonm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm0|SRID=0;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+polygonm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm0|SRID=0;POLYGON M EMPTY|OK
+polygonm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm0|SRID=0;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+polygonm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm0|SRID=1;POLYGON EMPTY|Column has M dimension but geometry does not
+polygonm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm0|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+polygonm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm0|SRID=1;POLYGON M EMPTY|OK
+polygonm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm0|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+polygonm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm1|SRID=1;POLYGON EMPTY|Column has M dimension but geometry does not
+polygonm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm1|SRID=1;POLYGON Z EMPTY|Geometry has Z dimension but column does not
+polygonm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm1|SRID=1;POLYGON M EMPTY|OK
+polygonm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonm1|SRID=1;POLYGON ZM EMPTY|Geometry has Z dimension but column does not
+polygonm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
+polygonz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz|SRID=0;POLYGON Z EMPTY|OK
+polygonz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
+polygonz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz|SRID=0;POLYGON ZM EMPTY|Geometry has M dimension but column does not
+polygonz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
+polygonz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz|SRID=1;POLYGON Z EMPTY|OK
+polygonz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
+polygonz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz|SRID=1;POLYGON ZM EMPTY|Geometry has M dimension but column does not
+polygonz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz0|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
+polygonz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz0|SRID=0;POLYGON Z EMPTY|OK
+polygonz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz0|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
+polygonz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz0|SRID=0;POLYGON ZM EMPTY|Geometry has M dimension but column does not
+polygonz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz0|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
+polygonz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz0|SRID=1;POLYGON Z EMPTY|OK
+polygonz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz0|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
+polygonz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz0|SRID=1;POLYGON ZM EMPTY|Geometry has M dimension but column does not
+polygonz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz1|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
+polygonz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz1|SRID=1;POLYGON Z EMPTY|OK
+polygonz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz1|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
+polygonz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonz1|SRID=1;POLYGON ZM EMPTY|Geometry has M dimension but column does not
+polygonz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
+polygonzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm|SRID=0;POLYGON Z EMPTY|Column has M dimension but geometry does not
+polygonzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
+polygonzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm|SRID=0;POLYGON ZM EMPTY|OK
+polygonzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
+polygonzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm|SRID=1;POLYGON Z EMPTY|Column has M dimension but geometry does not
+polygonzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
+polygonzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm|SRID=1;POLYGON ZM EMPTY|OK
+polygonzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm0|SRID=0;POLYGON EMPTY|Column has Z dimension but geometry does not
+polygonzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm0|SRID=0;POLYGON Z EMPTY|Column has M dimension but geometry does not
+polygonzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm0|SRID=0;POLYGON M EMPTY|Column has Z dimension but geometry does not
+polygonzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm0|SRID=0;POLYGON ZM EMPTY|OK
+polygonzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm0|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
+polygonzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm0|SRID=1;POLYGON Z EMPTY|Column has M dimension but geometry does not
+polygonzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm0|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
+polygonzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm0|SRID=1;POLYGON ZM EMPTY|OK
+polygonzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polygonzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm1|SRID=1;POLYGON EMPTY|Column has Z dimension but geometry does not
+polygonzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Polygon)
+polygonzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm1|SRID=1;POLYGON Z EMPTY|Column has M dimension but geometry does not
+polygonzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm1|SRID=1;POLYGON M EMPTY|Column has Z dimension but geometry does not
+polygonzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polygonzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Polygon)
+polygonzm1|SRID=1;POLYGON ZM EMPTY|OK
+polygonzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Polygon)
+polygonzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Polygon)
+polygonzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Polygon)
+polygonzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Polygon)
+polygonzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Polygon)
+polygonzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Polygon)
+polygonzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Polygon)
+polygonzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Polygon)
+polyhedralsurface|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;POLYHEDRALSURFACE EMPTY|OK
+polyhedralsurface|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+polyhedralsurface|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
+polyhedralsurface|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+polyhedralsurface|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;POLYHEDRALSURFACE EMPTY|OK
+polyhedralsurface|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+polyhedralsurface|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
+polyhedralsurface|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+polyhedralsurface|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;POLYHEDRALSURFACE EMPTY|OK
+polyhedralsurface0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+polyhedralsurface0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
+polyhedralsurface0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+polyhedralsurface0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;POLYHEDRALSURFACE EMPTY|OK
+polyhedralsurface0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+polyhedralsurface0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
+polyhedralsurface0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+polyhedralsurface0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurface1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;POLYHEDRALSURFACE EMPTY|OK
+polyhedralsurface1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+polyhedralsurface1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry has M dimension but column does not
+polyhedralsurface1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurface1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+polyhedralsurface1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
+polyhedralsurfacem|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+polyhedralsurfacem|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;POLYHEDRALSURFACE M EMPTY|OK
+polyhedralsurfacem|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+polyhedralsurfacem|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
+polyhedralsurfacem|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+polyhedralsurfacem|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;POLYHEDRALSURFACE M EMPTY|OK
+polyhedralsurfacem|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+polyhedralsurfacem|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
+polyhedralsurfacem0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+polyhedralsurfacem0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;POLYHEDRALSURFACE M EMPTY|OK
+polyhedralsurfacem0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+polyhedralsurfacem0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
+polyhedralsurfacem0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+polyhedralsurfacem0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;POLYHEDRALSURFACE M EMPTY|OK
+polyhedralsurfacem0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+polyhedralsurfacem0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacem1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;POLYHEDRALSURFACE EMPTY|Column has M dimension but geometry does not
+polyhedralsurfacem1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry has Z dimension but column does not
+polyhedralsurfacem1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;POLYHEDRALSURFACE M EMPTY|OK
+polyhedralsurfacem1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacem1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has Z dimension but column does not
+polyhedralsurfacem1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacez|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;POLYHEDRALSURFACE Z EMPTY|OK
+polyhedralsurfacez|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacez|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
+polyhedralsurfacez|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacez|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;POLYHEDRALSURFACE Z EMPTY|OK
+polyhedralsurfacez|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacez|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
+polyhedralsurfacez|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacez0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;POLYHEDRALSURFACE Z EMPTY|OK
+polyhedralsurfacez0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacez0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
+polyhedralsurfacez0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacez0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;POLYHEDRALSURFACE Z EMPTY|OK
+polyhedralsurfacez0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacez0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
+polyhedralsurfacez0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacez1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacez1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;POLYHEDRALSURFACE Z EMPTY|OK
+polyhedralsurfacez1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacez1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacez1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry has M dimension but column does not
+polyhedralsurfacez1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacezm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
+polyhedralsurfacezm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacezm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|OK
+polyhedralsurfacezm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacezm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
+polyhedralsurfacezm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacezm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|OK
+polyhedralsurfacezm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacezm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
+polyhedralsurfacezm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacezm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|OK
+polyhedralsurfacezm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacezm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
+polyhedralsurfacezm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacezm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|OK
+polyhedralsurfacezm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+polyhedralsurfacezm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;POLYHEDRALSURFACE EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacezm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Column has M dimension but geometry does not
+polyhedralsurfacezm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Column has Z dimension but geometry does not
+polyhedralsurfacezm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (PolyhedralSurface)
+polyhedralsurfacezm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|OK
+polyhedralsurfacezm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (PolyhedralSurface)
+tin|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin|SRID=0;TIN EMPTY|OK
+tin|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin|SRID=1;TIN EMPTY|OK
+tin|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin0|SRID=0;TIN EMPTY|OK
+tin0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin0|SRID=1;TIN EMPTY|OK
+tin0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tin1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin1|SRID=1;TIN EMPTY|OK
+tin1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tin1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tin1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tin1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tin1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tin1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tin1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tin1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tin1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tin1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tin1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tin1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tin1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tin1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm|SRID=0;TIN EMPTY|Column has M dimension but geometry does not
+tinm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm|SRID=1;TIN EMPTY|Column has M dimension but geometry does not
+tinm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm0|SRID=0;TIN EMPTY|Column has M dimension but geometry does not
+tinm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm0|SRID=1;TIN EMPTY|Column has M dimension but geometry does not
+tinm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm1|SRID=1;TIN EMPTY|Column has M dimension but geometry does not
+tinm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
+tinz|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
+tinz|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz0|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
+tinz0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz0|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
+tinz0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinz1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz1|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
+tinz1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinz1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinz1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinz1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinz1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinz1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinz1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinz1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinz1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinz1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinz1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinz1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinz1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinz1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
+tinzm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
+tinzm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm0|SRID=0;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm0|SRID=0;TIN EMPTY|Column has Z dimension but geometry does not
+tinzm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm0|SRID=0;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm0|SRID=0;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm0|SRID=0;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm0|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm0|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
+tinzm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm0|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm0|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm0|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+tinzm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm1|SRID=1;TRIANGLE EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm1|SRID=1;TIN EMPTY|Column has Z dimension but geometry does not
+tinzm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm1|SRID=1;TRIANGLE Z EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm1|SRID=1;TRIANGLE M EMPTY|Geometry type (Triangle) does not match column type (Tin)
+tinzm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Tin)
+tinzm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Tin)
+tinzm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Tin)
+tinzm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Tin)
+tinzm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Tin)
+tinzm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Tin)
+tinzm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Tin)
+tinzm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Tin)
+tinzm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Tin)
+tinzm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Tin)
+tinzm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Tin)
+tinzm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Tin)
+tinzm1|SRID=1;TRIANGLE ZM EMPTY|Geometry type (Triangle) does not match column type (Tin)
+triangle|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle|SRID=0;TRIANGLE EMPTY|OK
+triangle|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+triangle|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+triangle|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle|SRID=0;TRIANGLE M EMPTY|Geometry has M dimension but column does not
+triangle|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+triangle|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle|SRID=1;TRIANGLE EMPTY|OK
+triangle|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+triangle|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+triangle|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle|SRID=1;TRIANGLE M EMPTY|Geometry has M dimension but column does not
+triangle|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+triangle0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle0|SRID=0;TRIANGLE EMPTY|OK
+triangle0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+triangle0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle0|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+triangle0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle0|SRID=0;TRIANGLE M EMPTY|Geometry has M dimension but column does not
+triangle0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle0|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+triangle0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle0|SRID=1;TRIANGLE EMPTY|OK
+triangle0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+triangle0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle0|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+triangle0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle0|SRID=1;TRIANGLE M EMPTY|Geometry has M dimension but column does not
+triangle0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle0|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+triangle1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+triangle1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle1|SRID=1;TRIANGLE EMPTY|OK
+triangle1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+triangle1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle1|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+triangle1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle1|SRID=1;TRIANGLE M EMPTY|Geometry has M dimension but column does not
+triangle1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+triangle1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+triangle1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+triangle1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+triangle1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+triangle1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+triangle1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+triangle1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+triangle1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+triangle1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+triangle1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+triangle1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+triangle1|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+trianglem|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem|SRID=0;TRIANGLE EMPTY|Column has M dimension but geometry does not
+trianglem|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglem|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+trianglem|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem|SRID=0;TRIANGLE M EMPTY|OK
+trianglem|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+trianglem|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem|SRID=1;TRIANGLE EMPTY|Column has M dimension but geometry does not
+trianglem|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglem|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+trianglem|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem|SRID=1;TRIANGLE M EMPTY|OK
+trianglem|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+trianglem0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem0|SRID=0;TRIANGLE EMPTY|Column has M dimension but geometry does not
+trianglem0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglem0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem0|SRID=0;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+trianglem0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem0|SRID=0;TRIANGLE M EMPTY|OK
+trianglem0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem0|SRID=0;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+trianglem0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem0|SRID=1;TRIANGLE EMPTY|Column has M dimension but geometry does not
+trianglem0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglem0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem0|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+trianglem0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem0|SRID=1;TRIANGLE M EMPTY|OK
+trianglem0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem0|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+trianglem1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglem1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem1|SRID=1;TRIANGLE EMPTY|Column has M dimension but geometry does not
+trianglem1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglem1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem1|SRID=1;TRIANGLE Z EMPTY|Geometry has Z dimension but column does not
+trianglem1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem1|SRID=1;TRIANGLE M EMPTY|OK
+trianglem1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglem1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglem1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglem1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglem1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglem1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglem1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglem1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglem1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglem1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglem1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglem1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglem1|SRID=1;TRIANGLE ZM EMPTY|Geometry has Z dimension but column does not
+trianglez|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+trianglez|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglez|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez|SRID=0;TRIANGLE Z EMPTY|OK
+trianglez|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+trianglez|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez|SRID=0;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
+trianglez|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+trianglez|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglez|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez|SRID=1;TRIANGLE Z EMPTY|OK
+trianglez|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+trianglez|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez|SRID=1;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
+trianglez0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez0|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+trianglez0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglez0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez0|SRID=0;TRIANGLE Z EMPTY|OK
+trianglez0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez0|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+trianglez0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez0|SRID=0;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
+trianglez0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez0|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+trianglez0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglez0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez0|SRID=1;TRIANGLE Z EMPTY|OK
+trianglez0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez0|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+trianglez0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez0|SRID=1;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
+trianglez1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglez1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez1|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+trianglez1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglez1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez1|SRID=1;TRIANGLE Z EMPTY|OK
+trianglez1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez1|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+trianglez1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglez1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglez1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglez1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglez1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglez1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglez1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglez1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglez1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglez1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglez1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglez1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglez1|SRID=1;TRIANGLE ZM EMPTY|Geometry has M dimension but column does not
+trianglezm|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+trianglezm|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglezm|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm|SRID=0;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
+trianglezm|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+trianglezm|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm|SRID=0;TRIANGLE ZM EMPTY|OK
+trianglezm|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+trianglezm|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglezm|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm|SRID=1;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
+trianglezm|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+trianglezm|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm|SRID=1;TRIANGLE ZM EMPTY|OK
+trianglezm0|SRID=0;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=0;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm0|SRID=0;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm0|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm0|SRID=0;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm0|SRID=0;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm0|SRID=0;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm0|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm0|SRID=0;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+trianglezm0|SRID=0;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglezm0|SRID=0;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=0;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm0|SRID=0;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm0|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm0|SRID=0;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm0|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm0|SRID=0;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm0|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm0|SRID=0;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
+trianglezm0|SRID=0;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=0;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm0|SRID=0;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm0|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm0|SRID=0;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm0|SRID=0;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm0|SRID=0;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm0|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm0|SRID=0;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+trianglezm0|SRID=0;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=0;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm0|SRID=0;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm0|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm0|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm0|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm0|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm0|SRID=0;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm0|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm0|SRID=0;TRIANGLE ZM EMPTY|OK
+trianglezm0|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm0|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm0|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm0|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm0|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm0|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm0|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm0|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+trianglezm0|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglezm0|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm0|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm0|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm0|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm0|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm0|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm0|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm0|SRID=1;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
+trianglezm0|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm0|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm0|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm0|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm0|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm0|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm0|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm0|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+trianglezm0|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm0|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm0|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm0|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm0|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm0|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm0|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm0|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm0|SRID=1;TRIANGLE ZM EMPTY|OK
+trianglezm1|SRID=0;POINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;LINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;POLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTIPOINT EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTILINESTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTIPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;GEOMETRYCOLLECTION EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;CIRCULARSTRING EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;COMPOUNDCURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;CURVEPOLYGON EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTICURVE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTISURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;POLYHEDRALSURFACE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;TRIANGLE EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;TIN EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;POINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;LINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;POLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTIPOINT Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTILINESTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTIPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;GEOMETRYCOLLECTION Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;CIRCULARSTRING Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;COMPOUNDCURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;CURVEPOLYGON Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTICURVE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTISURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;POLYHEDRALSURFACE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;TRIANGLE Z EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;POINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;LINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;POLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTIPOINT M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTILINESTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTIPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;GEOMETRYCOLLECTION M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;CIRCULARSTRING M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;COMPOUNDCURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;CURVEPOLYGON M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTICURVE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTISURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;POLYHEDRALSURFACE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;TRIANGLE M EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;POINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;LINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;POLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTIPOINT ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTILINESTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTIPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;GEOMETRYCOLLECTION ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;CIRCULARSTRING ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;COMPOUNDCURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;CURVEPOLYGON ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTICURVE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;MULTISURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;POLYHEDRALSURFACE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=0;TRIANGLE ZM EMPTY|Geometry SRID (0) does not match column SRID (1)
+trianglezm1|SRID=1;POINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm1|SRID=1;LINESTRING EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm1|SRID=1;POLYGON EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTIPOINT EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTILINESTRING EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTIPOLYGON EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm1|SRID=1;GEOMETRYCOLLECTION EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm1|SRID=1;CIRCULARSTRING EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm1|SRID=1;COMPOUNDCURVE EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm1|SRID=1;CURVEPOLYGON EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTICURVE EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTISURFACE EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm1|SRID=1;POLYHEDRALSURFACE EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm1|SRID=1;TRIANGLE EMPTY|Column has Z dimension but geometry does not
+trianglezm1|SRID=1;TIN EMPTY|Geometry type (Tin) does not match column type (Triangle)
+trianglezm1|SRID=1;POINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm1|SRID=1;LINESTRING Z EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm1|SRID=1;POLYGON Z EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTIPOINT Z EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTILINESTRING Z EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTIPOLYGON Z EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm1|SRID=1;GEOMETRYCOLLECTION Z EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm1|SRID=1;CIRCULARSTRING Z EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm1|SRID=1;COMPOUNDCURVE Z EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm1|SRID=1;CURVEPOLYGON Z EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTICURVE Z EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTISURFACE Z EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm1|SRID=1;POLYHEDRALSURFACE Z EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm1|SRID=1;TRIANGLE Z EMPTY|Column has M dimension but geometry does not
+trianglezm1|SRID=1;POINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm1|SRID=1;LINESTRING M EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm1|SRID=1;POLYGON M EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTIPOINT M EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTILINESTRING M EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTIPOLYGON M EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm1|SRID=1;GEOMETRYCOLLECTION M EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm1|SRID=1;CIRCULARSTRING M EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm1|SRID=1;COMPOUNDCURVE M EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm1|SRID=1;CURVEPOLYGON M EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTICURVE M EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTISURFACE M EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm1|SRID=1;POLYHEDRALSURFACE M EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm1|SRID=1;TRIANGLE M EMPTY|Column has Z dimension but geometry does not
+trianglezm1|SRID=1;POINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm1|SRID=1;LINESTRING ZM EMPTY|Geometry type (LineString) does not match column type (Triangle)
+trianglezm1|SRID=1;POLYGON ZM EMPTY|Geometry type (Polygon) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTIPOINT ZM EMPTY|Geometry type (MultiPoint) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTILINESTRING ZM EMPTY|Geometry type (MultiLineString) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTIPOLYGON ZM EMPTY|Geometry type (MultiPolygon) does not match column type (Triangle)
+trianglezm1|SRID=1;GEOMETRYCOLLECTION ZM EMPTY|Geometry type (GeometryCollection) does not match column type (Triangle)
+trianglezm1|SRID=1;CIRCULARSTRING ZM EMPTY|Geometry type (CircularString) does not match column type (Triangle)
+trianglezm1|SRID=1;COMPOUNDCURVE ZM EMPTY|Geometry type (CompoundCurve) does not match column type (Triangle)
+trianglezm1|SRID=1;CURVEPOLYGON ZM EMPTY|Geometry type (CurvePolygon) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTICURVE ZM EMPTY|Geometry type (MultiCurve) does not match column type (Triangle)
+trianglezm1|SRID=1;MULTISURFACE ZM EMPTY|Geometry type (MultiSurface) does not match column type (Triangle)
+trianglezm1|SRID=1;POLYHEDRALSURFACE ZM EMPTY|Geometry type (PolyhedralSurface) does not match column type (Triangle)
+trianglezm1|SRID=1;TRIANGLE ZM EMPTY|OK