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 7c9e0b1791..736ba47006 100644
--- a/jOOQ/src/main/java/org/jooq/util/postgres/PostgresDSL.java
+++ b/jOOQ/src/main/java/org/jooq/util/postgres/PostgresDSL.java
@@ -36,6 +36,7 @@ package org.jooq.util.postgres;
import static org.jooq.SQLDialect.POSTGRES;
+import org.jooq.Condition;
import org.jooq.DataType;
import org.jooq.Field;
import org.jooq.Record;
@@ -63,6 +64,54 @@ public class PostgresDSL extends DSL {
// PostgreSQL-specific array functions
// -------------------------------------------------------------------------
+ /**
+ * The PostgreSQL array1 && array2 overlap operator.
+ *
+ * Example:
+ * Example:
+ * Example:
+ * Example:
+ */
+ @Support({ POSTGRES })
+ public static
+ * true = array[1, 2, 3] && array[3, 4, 5]
+ *
array1 && array2 overlap operator.
+ *
+ */
+ @Support({ POSTGRES })
+ public static
+ * true = array[1, 2, 3] && array[3, 4, 5]
+ *
array1 && array2 overlap operator.
+ *
+ */
+ @Support({ POSTGRES })
+ public static
+ * true = array[1, 2, 3] && array[3, 4, 5]
+ *
array1 && array2 overlap operator.
+ *
+ */
+ @Support({ POSTGRES })
+ public static
+ * true = array[1, 2, 3] && array[3, 4, 5]
+ *
array(select) function.
*