CREATE TABLE geo ( geo_id INTEGER, ); SELECT AddGeometryColumn( 'geo', 'geo_geom', -1, 'GEOMETRY', 4 );
INSERT INTO geo (geo_id, geo_geom) VALUES (1,ST_GeomFromText('MULTIPOINT(1 2 3 4,5 6 7 8)',-1));
update geo set geo_geom=st_union(geo_geom,ST_GeomFromText('MULTIPOINT(1 2 3 4,5 6 7 8)',-1)) where geo_id=0;
but it doesnt work: violates dimms.
Thanks