[jOOQ/jOOQ#15658] Copy paste errors in likeIgnoreCase and containsIgnoreCase Javadoc
This commit is contained in:
parent
0e4b997fd0
commit
fb514760df
@ -3078,9 +3078,9 @@ public final class QOM {
|
||||
* Create a condition to case-insensitively pattern-check this field against
|
||||
* a value.
|
||||
* <p>
|
||||
* This translates to <code>this not ilike value</code> in
|
||||
* This translates to <code>this ilike value</code> in
|
||||
* {@link SQLDialect#POSTGRES}, or to
|
||||
* <code>lower(this) not like lower(value)</code> in all other dialects.
|
||||
* <code>lower(this) like lower(value)</code> in all other dialects.
|
||||
*/
|
||||
public /*sealed*/ interface LikeIgnoreCase
|
||||
extends
|
||||
@ -4735,7 +4735,7 @@ public final class QOM {
|
||||
* This translates to
|
||||
* <code>this ilike ('%' || escape(value, '\') || '%') escape '\'</code> in
|
||||
* {@link SQLDialect#POSTGRES}, or to
|
||||
* <code>lower(this) not like lower(('%' || escape(value, '\') || '%') escape '\')</code>
|
||||
* <code>lower(this) like lower(('%' || escape(value, '\') || '%') escape '\')</code>
|
||||
* in all other dialects.
|
||||
*/
|
||||
public /*sealed*/ interface ContainsIgnoreCase<T>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user