Clean up wrong NOTs in ILIKE docs

This commit is contained in:
Napster 2023-09-29 15:37:45 +03:00
parent 526e259b6b
commit 5ca94d3ebe
No known key found for this signature in database
GPG Key ID: BD4F338832AEC185
2 changed files with 7 additions and 6 deletions

View File

@ -1022,9 +1022,9 @@ extends
* 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.
*
* @param pattern is wrapped as {@link DSL#val(Object)}.
*/
@ -1038,9 +1038,9 @@ extends
* 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.
*/
@NotNull
@Support
@ -1592,7 +1592,7 @@ extends
* 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.
*
* @param content is wrapped as {@link DSL#val(Object)}.
@ -1610,7 +1610,7 @@ extends
* 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.
*/
@NotNull

View File

@ -11,6 +11,7 @@ Authors and contributors of jOOQ or parts of jOOQ in alphabetical order:
- Brett Meyer
- Christian Stein
- Christopher Deckers
- Dennis Neufeld
- Ed Schaller
- Eric Peters
- Ernest Mishkin