Clean up wrong NOTs in ILIKE docs
This commit is contained in:
parent
526e259b6b
commit
5ca94d3ebe
@ -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
|
||||
|
||||
@ -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
|
||||
|
||||
Loading…
Reference in New Issue
Block a user