like geometry extent
- #2822, Use @ operator instead of ST_CoveredBy() for raster
max extent constraint
+ - #3018, GROUP BY geography sometimes returns duplicate rows
- #3020, ST_AddBand out-db bug where height using width value
+ - #3048, shp2pgsql - illegal number format when specific system locale set
- #3061, Allow duplicate points in JSON, GML, GML ST_GeomFrom* functions
- #3086, ST_DumpValues() crashes backend on cleanup with invalid
band indexes
- - #3018, GROUP BY geography sometimes returns duplicate rows
* Code refactoring *
/* Add the shape attribute if we are reading it */
if (state->config->readshape == 1)
{
+ /* Force the locale to C */
+ char *oldlocale = setlocale(LC_NUMERIC, "C");
+
/* Handle the case of a NULL shape */
if (obj->nVertices == 0)
{
/* Tidy up everything */
SHPDestroyObject(obj);
+
+ setlocale(LC_NUMERIC, oldlocale);
}
/* Close the line correctly for dump/insert format */