From fb514760df20f0ce0dac6ecb326b8b122fe42225 Mon Sep 17 00:00:00 2001 From: Lukas Eder Date: Fri, 29 Sep 2023 16:59:31 +0200 Subject: [PATCH] [jOOQ/jOOQ#15658] Copy paste errors in likeIgnoreCase and containsIgnoreCase Javadoc --- jOOQ/src/main/java/org/jooq/impl/QOM.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/jOOQ/src/main/java/org/jooq/impl/QOM.java b/jOOQ/src/main/java/org/jooq/impl/QOM.java index 3a523b326a..1e406c5824 100644 --- a/jOOQ/src/main/java/org/jooq/impl/QOM.java +++ b/jOOQ/src/main/java/org/jooq/impl/QOM.java @@ -3078,9 +3078,9 @@ public final class QOM { * Create a condition to case-insensitively pattern-check this field against * a value. *

- * This translates to this not ilike value in + * This translates to this ilike value in * {@link SQLDialect#POSTGRES}, or to - * lower(this) not like lower(value) in all other dialects. + * lower(this) like lower(value) in all other dialects. */ public /*sealed*/ interface LikeIgnoreCase extends @@ -4735,7 +4735,7 @@ public final class QOM { * This translates to * this ilike ('%' || escape(value, '\') || '%') escape '\' in * {@link SQLDialect#POSTGRES}, or to - * lower(this) not like lower(('%' || escape(value, '\') || '%') escape '\') + * lower(this) like lower(('%' || escape(value, '\') || '%') escape '\') * in all other dialects. */ public /*sealed*/ interface ContainsIgnoreCase