Skip to content

Commit f55de7f

Browse files
committed
Prepping for PostGIS 3.2.0beta3
1 parent d8976c0 commit f55de7f

File tree

4 files changed

+68
-8
lines changed

4 files changed

+68
-8
lines changed

NEWS

+25-4
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,36 @@
11
PostGIS 3.2.0beta3
2-
2021/xx/xx
2+
2021/12/04
33
This version requires PostgreSQL 9.6 or higher, GEOS 3.6 or higher, and Proj 4.9+
44
Additional features are enabled if you are running GEOS 3.9+
55
(and ST_MakeValid enhancements with 3.10+),
66
Proj 6.1+, and PostgreSQL 14+.
7+
Due to some query performance degradation
8+
with the new fast index build that requires PG14,
9+
we have decided to disable the feature by default
10+
until we get more user testing
11+
as to the true impact of real-world queries.
12+
If you are running PG14+, you can reenable it by doing
13+
14+
ALTER OPERATOR FAMILY gist_geometry_ops_2d USING gist
15+
ADD FUNCTION 11 (geometry)
16+
geometry_gist_sortsupport_2d (internal);
17+
18+
To revert the change:
19+
ALTER OPERATOR FAMILY gist_geometry_ops_2d using gist
20+
DROP FUNCTION 11 (geometry);
21+
22+
and then reindex your gist indexes.
23+
724
Changes since PostGIS 3.2.0beta2 release:
8-
* Fixes *
25+
* Breaking changes / fixes *
926
- #5028, ST_AsFlatGeobuf crashes on mixed geometry input
27+
(Björn Harrtell)
1028
- #5029, ST_AsFlatGeobuf indexed output corruption
11-
- #5014, Crash on ST_TableFromFlatGeobuf
12-
* Enhancements *
29+
(Björn Harrtell)
30+
- #5014, Crash on ST_TableFromFlatGeobuf (Björn Harrtell)
31+
- Rename ST_TableFromFlatGeobuf to ST_FromFlatGeobufToTable
32+
(Björn Harrtell)
33+
- PG14 fast index building disabled by default. (Paul Ramsey)
1334

1435
PostGIS 3.2.0beta2
1536
2021/11/26

README.postgis

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
PostGIS - Geographic Information Systems Extensions to PostgreSQL
22
=================================================================
33

4-
:Version: 3.2.0beta2
5-
:Date: 2021-11-26
4+
:Version: 3.2.0beta3
5+
:Date: 2021-12-04
66
:Website: https://postgis.net
77

88
This distribution contains a module which implements GIS simple features, ties

Version.config

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
POSTGIS_MAJOR_VERSION=3
77
POSTGIS_MINOR_VERSION=2
8-
POSTGIS_MICRO_VERSION=0dev
8+
POSTGIS_MICRO_VERSION=0beta3
99

1010
# Liblwgeom interface versioning, reset to 0:0:0 (cur:age:rev)
1111
# when changing POSTGIS_MINOR_VERSION

doc/release_notes.xml

+40-1
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,45 @@
22
<appendix id="release_notes">
33
<title>Appendix</title>
44
<subtitle>Release Notes</subtitle>
5+
6+
<sect1>
7+
<title>PostGIS 3.2.0beta3</title>
8+
<para>2021/12/04</para>
9+
<para>This version requires PostgreSQL 9.6 or higher, GEOS 3.6 or higher, and Proj 4.9+
10+
Additional features are enabled if you are running GEOS 3.9+
11+
(and ST_MakeValid enhancements with 3.10+),
12+
Proj 6.1+, and PostgreSQL 14+.</para>
13+
<para>Due to some query performance degradation
14+
with the new PG14 fast index build ,
15+
we have decided to disable the feature by default
16+
until we get more user testing
17+
as to the true impact of real-world queries.
18+
If you are running PG14+, you can reenable it by doing:</para>
19+
20+
<programlisting>ALTER OPERATOR FAMILY gist_geometry_ops_2d USING gist
21+
ADD FUNCTION 11 (geometry)
22+
geometry_gist_sortsupport_2d (internal);
23+
</programlisting>
24+
<para>To revert the change:</para>
25+
<programlisting>ALTER OPERATOR FAMILY gist_geometry_ops_2d using gist
26+
DROP FUNCTION 11 (geometry);</programlisting>
27+
28+
<para>and then reindex your gist indexes</para>
29+
30+
<para>Changes since PostGIS 3.2.0beta2 release:</para>
31+
<simplesect>
32+
<title>Breaking changes / fixes</title>
33+
<para>5028, ST_AsFlatGeobuf crashes on mixed geometry input
34+
(Björn Harrtell)</para>
35+
<para>5029, ST_AsFlatGeobuf indexed output corruption
36+
(Björn Harrtell)</para>
37+
<para>5014, Crash on ST_TableFromFlatGeobuf (Björn Harrtell)</para>
38+
<para>Rename ST_TableFromFlatGeobuf to ST_FromFlatGeobufToTable
39+
(Björn Harrtell)</para>
40+
<para>PG14 fast index building disabled by default. (Paul Ramsey)</para>
41+
</simplesect>
42+
</sect1>
43+
544
<sect1>
645
<title>Release 3.2.0beta2</title>
746
<para>Release date: 2021/11/26</para>
@@ -12,7 +51,7 @@ Proj 6.1+, and PostgreSQL 14+.
1251

1352
Changes since PostGIS 3.2.0beta1 release:</para>
1453
<simplesect>
15-
<title> Breaking changes / fixes</title>
54+
<title>Breaking changes / fixes</title>
1655
<para>5016, loader (shp2pgsq): Respect LDFLAGS (Greg Troxel)</para>
1756
<para>5005, ST_AsFlatGeoBuf crashes on tables when geometry
1857
column is not the first column (Björn Harrtell)</para>

0 commit comments

Comments
 (0)