partition for data that does not match a partition key, and the ability to
create primary keys, foreign keys, indexes, and triggers on partitions that are
passed down to all tables. PostgreSQL 11 also supports automatically moving rows
-to the correct partition if the partition key for that row is updated
-.
+to the correct partition if the partition key for that row is updated.
+
##### HOLD FOR QUOTE ABOUT PARTITIONING
PostgreSQL 11 improves upon query performance when reading from partitions by
##### HOLD FOR QUOTE ABOUT JIT
To take advantage of JIT compilation, you will need to install the LLVM
-dependencies enable JIT compilation in either your PostgreSQL settings file by
-setting `jit = on` or from your PostgreSQL session by executing `SET jit = on`.
+dependencies to enable JIT compilation in either your PostgreSQL settings file
+by setting `jit = on` or from your PostgreSQL session by executing
+`SET jit = on`.
## General User Experience Improvements
- "Covering indexes," which allows a user to add additional columns to an index
using the `INCLUDE` clause and are helpful for performing index-only scans,
especially on data types that are not indexable by B-tree indexes.
-- Additional functionally for working with window functions, including allowing
+- Additional functionality for working with window functions, including allowing
`RANGE` to use `PRECEDING`/`FOLLOWING`, `GROUPS`, and frame exclusion
- The inclusion of the keywords "quit" and "exit" in the PostgreSQL command-line
interface to help make it easier to leave the command-line tool