[postgis-tickets] [PostGIS] #3864: Sorting by geometry is slower than sorting by geohash

PostGIS trac at osgeo.org
Sat Sep 30 10:55:28 PDT 2017


#3864: Sorting by geometry is slower than sorting by geohash
----------------------+---------------------------
  Reporter:  komzpa   |      Owner:  pramsey
      Type:  defect   |     Status:  new
  Priority:  medium   |  Milestone:  PostGIS 2.4.1
 Component:  postgis  |    Version:  2.3.x
Resolution:           |   Keywords:
----------------------+---------------------------

Comment (by strk):

 Missing PG_FREE_IF_COPY in here:

 {{{
 PG_FUNCTION_INFO_V1(lwgeom_cmp);
 Datum lwgeom_cmp(PG_FUNCTION_ARGS)
 {
   GSERIALIZED *g1 = PG_GETARG_GSERIALIZED_P(0);
   GSERIALIZED *g2 = PG_GETARG_GSERIALIZED_P(1);
     PG_RETURN_INT32(gserialized_cmp(g1, g2));
 }
 }}}

--
Ticket URL: <https://trac.osgeo.org/postgis/ticket/3864#comment:11>
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