[jOOQ/jOOQ#18403] ORDER BY <index> Javadoc references a non-existing
DSL.literal() method
This commit is contained in:
parent
ee38523d86
commit
e3b4ab612a
@ -95,7 +95,7 @@ public interface DeleteOrderByStep<R extends Record> extends DeleteLimitStep<R>
|
||||
* Indexes start at <code>1</code> in SQL!
|
||||
* <p>
|
||||
* Note, you can use <code>orderBy(DSL.val(1).desc())</code> or
|
||||
* <code>orderBy(DSL.literal(1).desc())</code> to apply descending
|
||||
* <code>orderBy(DSL.inline(1).desc())</code> to apply descending
|
||||
* ordering
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
|
||||
@ -286,7 +286,7 @@ public interface SelectOrderByStep<R extends Record> extends SelectLimitStep<R>
|
||||
* Indexes start at <code>1</code> in SQL!
|
||||
* <p>
|
||||
* Note, you can use <code>orderBy(DSL.val(1).desc())</code> or
|
||||
* <code>orderBy(DSL.literal(1).desc())</code> to apply descending
|
||||
* <code>orderBy(DSL.inline(1).desc())</code> to apply descending
|
||||
* ordering
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
|
||||
@ -788,7 +788,7 @@ public interface SelectQuery<R extends Record> extends Select<R>, ConditionProvi
|
||||
* Indexes start at <code>1</code> in SQL!
|
||||
* <p>
|
||||
* Note, you can use <code>addOrderBy(DSL.val(1).desc())</code> or
|
||||
* <code>addOrderBy(DSL.literal(1).desc())</code> to apply descending
|
||||
* <code>addOrderBy(DSL.inline(1).desc())</code> to apply descending
|
||||
* ordering
|
||||
*
|
||||
* @param fieldIndexes The ordering fields
|
||||
|
||||
@ -97,7 +97,7 @@ public interface UpdateOrderByStep<R extends Record> extends UpdateLimitStep<R>
|
||||
* Indexes start at <code>1</code> in SQL!
|
||||
* <p>
|
||||
* Note, you can use <code>orderBy(DSL.val(1).desc())</code> or
|
||||
* <code>orderBy(DSL.literal(1).desc())</code> to apply descending
|
||||
* <code>orderBy(DSL.inline(1).desc())</code> to apply descending
|
||||
* ordering
|
||||
*/
|
||||
@NotNull @CheckReturnValue
|
||||
|
||||
Loading…
Reference in New Issue
Block a user