From cb7785ba73e19203c2e14811e1583b6694a87f3c Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Thu, 5 Dec 2024 14:51:48 +0100 Subject: [PATCH] [jOOQ/jOOQ#17741] Add SQLDialect.POSTGRES_16 and SQLDialect.POSTGRES_17 --- jOOQ/src/main/java/org/jooq/SQLDialect.java | 28 +++++++++++++++++++-- 1 file changed, 26 insertions(+), 2 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/SQLDialect.java b/jOOQ/src/main/java/org/jooq/SQLDialect.java index 565c7f0af7..15293d9c4b 100644 --- a/jOOQ/src/main/java/org/jooq/SQLDialect.java +++ b/jOOQ/src/main/java/org/jooq/SQLDialect.java @@ -383,13 +383,37 @@ public enum SQLDialect { /** * The PostgreSQL dialect family. *

- * This family behaves like the versioned dialect {@link #POSTGRES_15}. + * This family behaves like the versioned dialect {@link #POSTGRES_17}. *

* While this family (and its dialects) have been observed to work to some * extent on Amazon RedShift as well, we strongly suggest you use the * official {@link #REDSHIFT} support, instead. */ - POSTGRES("Postgres", false, true, new RequiredVersion(15, null, null), SQLDialectCategory.POSTGRES), + POSTGRES("Postgres", false, true, new RequiredVersion(17, null, null), SQLDialectCategory.POSTGRES), + + + + + + + + + + + + + + + + + + + + + + + +