diff --git a/jOOQ/src/main/java/org/jooq/util/postgres/PostgresDSL.java b/jOOQ/src/main/java/org/jooq/util/postgres/PostgresDSL.java
index 403dbd8897..2408db1775 100644
--- a/jOOQ/src/main/java/org/jooq/util/postgres/PostgresDSL.java
+++ b/jOOQ/src/main/java/org/jooq/util/postgres/PostgresDSL.java
@@ -239,10 +239,18 @@ public class PostgresDSL extends DSL {
/**
* The PostgreSQL array_cat(anyarray, anyelement) function.
*
- * Example:
+ * Example:
+ *
+ *
+ *
* {1, 2, 3, 4, 5} = array_cat(ARRAY[1, 2], ARRAY[3, 4, 5])
- *
+ *
+ *
+ *
+ * @deprecated - 3.16.0 - [#14388] - Use
+ * {@link DSL#arrayConcat(Object[], Object[])} instead.
*/
+ @Deprecated
@NotNull
@Support({ POSTGRES, YUGABYTEDB })
public static
* {1, 2, 3, 4, 5} = array_cat(ARRAY[1, 2], ARRAY[3, 4, 5])
*
+ *
+ * @deprecated - 3.16.0 - [#14388] - Use
+ * {@link DSL#arrayConcat(Object[], Field)} instead.
*/
+ @Deprecated
@NotNull
@Support({ POSTGRES, YUGABYTEDB })
public static
* {1, 2, 3, 4, 5} = array_cat(ARRAY[1, 2], ARRAY[3, 4, 5])
*
+ *
+ * @deprecated - 3.16.0 - [#14388] - Use
+ * {@link DSL#arrayConcat(Field, Object[])} instead.
*/
+ @Deprecated
@NotNull
@Support({ POSTGRES, YUGABYTEDB })
public static
* {1, 2, 3, 4, 5} = array_cat(ARRAY[1, 2], ARRAY[3, 4, 5])
*
+ *
+ * @deprecated - 3.16.0 - [#14388] - Use
+ * {@link DSL#arrayConcat(Field, Field)} instead.
*/
+ @Deprecated
@NotNull
@Support({ POSTGRES, YUGABYTEDB })
public static