[jOOQ/jOOQ#18403] ORDER BY <index> Javadoc references a non-existing

DSL.literal() method
This commit is contained in:
Lukas Eder 2025-04-30 10:46:43 +02:00
parent ee38523d86
commit e3b4ab612a
4 changed files with 4 additions and 4 deletions

View File

@ -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

View File

@ -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

View File

@ -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

View File

@ -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