[postgis-tickets] [PostGIS] #3759: PostgreSQL 10 failure on winnie both raster and geometry

PostGIS trac at osgeo.org
Thu May 25 12:51:56 PDT 2017


#3759: PostgreSQL 10 failure on winnie both raster and geometry
------------------------+---------------------------
  Reporter:  robe       |      Owner:  robe
      Type:  defect     |     Status:  new
  Priority:  blocker    |  Milestone:  PostGIS 2.4.0
 Component:  buildbots  |    Version:  trunk
Resolution:             |   Keywords:  postgresql 10
------------------------+---------------------------

Comment (by robe):

 Aha smoking gun at least for the postgis regression.  The raster
 regression might always have been there wasn't seen because of the
 selectivity failure might have been preventing raster tests.

 the geometry regression in tickets caused by this change

 {{{
  nd_stats = palloc(sizeof(float) * sslot.nnumbers);
  memcpy(nd_stats, sslot.numbers, sizeof(float) * sslot.nnumbers);
 }}}

 To:

 {{{
  nd_stats = palloc(sizeof(float4) * sslot.nnumbers);
  memcpy(nd_stats, sslot.numbers, sizeof(float4) * sslot.nnumbers);
 }}}


 @pramsey - this change was not documented in your commit notes, was there
 a reason for it?

--
Ticket URL: <https://trac.osgeo.org/postgis/ticket/3759#comment:2>
PostGIS <http://trac.osgeo.org/postgis/>
The PostGIS Trac is used for bug, enhancement & task tracking, a user and developer wiki, and a view into the subversion code repository of PostGIS project.


More information about the postgis-tickets mailing list