Additional revisions per community feedback.
authorJonathan S. Katz <jonathan.katz@excoventures.com>
Wed, 11 Sep 2019 01:06:18 +0000 (21:06 -0400)
committerJonathan S. Katz <jonathan.katz@excoventures.com>
Wed, 11 Sep 2019 01:06:18 +0000 (21:06 -0400)
releases/12/en/release.en.md

index d57de2baea5286e399e1298ebb297e4f387e2515..35ef17c39f30786c4f9e57e55a5c6f2b5fe7f464 100644 (file)
@@ -16,7 +16,7 @@ B-tree Indexes, the standard type of indexing in PostgreSQL, have been optimized
 
 Queries on partitioned tables have also seen demonstrable improvements, particularly for tables with thousands of partitions that only need to retrieve data from a limited subset. PostgreSQL 12 also improves the performance of adding data to partitioned tables with "INSERT" and "COPY", and includes the ability to attach a new partition to a table without blocking queries.
 
-There are additional enhancements to indexing in PostgreSQL 12 that affect overall performance, including lower overhead in write-ahead log generation for GiST, GIN, and SP-GiST indexes, the ability to create covering indexes (the "INCLUDE" clause) on GiST indexes, the ability to perform K-nearest neighbor queries with the distance operator ("<->") using SP-GiST indexes, and CREATE STATISTICS now supporting most-common value (MCV) statistics to help with columns that are nonuniformly distributed.
+There are additional enhancements to indexing in PostgreSQL 12 that affect overall performance, including lower overhead in write-ahead log generation for the GiST, GIN, and SP-GiST index types, the ability to create covering indexes (the "INCLUDE" clause) on GiST indexes, the ability to perform K-nearest neighbor queries with the distance operator ("<->") using SP-GiST indexes, and CREATE STATISTICS now supporting most-common value (MCV) statistics to help generate better query plans when using columns that are nonuniformly distributed.
 
 Just-in-time (JIT) compilation using LLVM, introduced in PostgreSQL 11, is now enabled by default. JIT compilation can provide performance benefits to the execution of expressions in WHERE clauses, target lists, aggregates, and some internal operations, and is available if your PostgreSQL installation is compiled or packaged with LLVM.