[postgis-tickets] [PostGIS] #3821: Don't drop st_union when updating postgis extension to 2.4
PostGIS
trac at osgeo.org
Mon Aug 28 12:24:00 PDT 2017
#3821: Don't drop st_union when updating postgis extension to 2.4
--------------------------+---------------------------
Reporter: nextstopsun | Owner: robe
Type: defect | Status: new
Priority: medium | Milestone: PostGIS 2.5.0
Component: postgis | Version: 2.3.x
Resolution: | Keywords:
--------------------------+---------------------------
Comment (by robe):
Sadly I'm afraid since we don't keep track of changes within dev, going
from PostGIS 2.4.0dev to PostGIS 2.4.0devnext for example will always try
to drop and recreate the aggs. Fussing with sys catalogs is beginning to
feel more appealing to me now.
What you could do for now if you really don't want to drop and recreate
the aggs (or you just need to do it for ST_Union) , is in the extension
scripts -- e.g. postgis--2.4.0devnext--2.4.0dev.sql
where it has
{{{
OR (
204 = version_from_num AND version_from_isdev
)
}}}
Wipe that out and it won't force drop and recreate aggs. Again you can
maybe just do it for ST_Union since I think ST_ASMVT has some aggs and
those changes you might want to do.
I have to lookup the sys catalogs but I think there is a way to directly
update the sys catalogs to set the parallel safe bit on by directly
updating the catalogs.
--
Ticket URL: <https://trac.osgeo.org/postgis/ticket/3821#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