2
2
<appendix id =" release_notes" >
3
3
<title >Appendix</title >
4
4
<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
+
5
44
<sect1 >
6
45
<title >Release 3.2.0beta2</title >
7
46
<para >Release date: 2021/11/26</para >
@@ -12,7 +51,7 @@ Proj 6.1+, and PostgreSQL 14+.
12
51
13
52
Changes since PostGIS 3.2.0beta1 release:</para >
14
53
<simplesect >
15
- <title > Breaking changes / fixes</title >
54
+ <title >Breaking changes / fixes</title >
16
55
<para >5016, loader (shp2pgsq): Respect LDFLAGS (Greg Troxel)</para >
17
56
<para >5005, ST_AsFlatGeoBuf crashes on tables when geometry
18
57
column is not the first column (Björn Harrtell)</para >
0 commit comments