From 5de946885f6e3fa5426dbc331bdc9a65a30c5672 Mon Sep 17 00:00:00 2001 From: Gabriele Bartolini Date: Mon, 15 Sep 2025 17:06:13 +0200 Subject: [PATCH] docs: mention `jit` package not being in `minimal` from 18 (#314) Signed-off-by: Gabriele Bartolini --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 45d4e634..2756f256 100644 --- a/README.md +++ b/README.md @@ -89,6 +89,11 @@ maintained by the PostgreSQL Global Development Group (PGDG). These images are identified by the inclusion of `minimal` in their tag names, for example: `17.6-minimal-trixie`. +> **NOTE**: Starting with PostgreSQL 18, `minimal` images will **not** include +> LLVM JIT support (shipped in the `postgresql-MM-jit` package, where `MM` +> represents the PostgreSQL major version). JIT will be available only in the +> `standard` image. + ### Standard Images Standard images are an extension of the `minimal` images, enhanced with the @@ -98,6 +103,11 @@ following additional features: - Postgres Failover Slots - pgvector - All Locales +- LLVM JIT support + - For PostgreSQL 17 and earlier: included in the main PostgreSQL packages, + also available in `minimal` images + - From PostgreSQL 18 onwards: provided by the separate `postgresql-MM-jit` + package Standard images are identifiable by the `standard` tag in their names, such as: `17.6-standard-trixie`.