closes #3682 for PostGIS 2.4.0 (trunk)
git-svn-id: http://svn.osgeo.org/postgis/trunk@15381
b70326c6-7e19-0410-871a-
916f4a2858ee
- #3599, Geobuf output support via ST_AsGeobuf (Björn Harrtell)
- #3661, Mapbox vector tile output support via ST_AsMVT (Björn Harrtell / CartoDB)
- #3689, Add orientation checking and forcing functions (Dan Baston)
+
+ * Bug Fixes *
+ - #3682, Boolean (FTLogical) should be 1 byte not 2 bytes
+
PostGIS 2.3.0
2016/09/26
/**********************************************************************
*
* PostGIS - Spatial Types for PostgreSQL
- * http://www.postgis.org
+ * http://postgis.net
*
* Copyright (C) 2001-2003 Refractions Research Inc.
*
else if (pgfieldtype == 16)
{
dbffieldtype = FTLogical;
- dbffieldsize = 2;
+ dbffieldsize = 1;
dbffielddecs = 0;
}