Uses of Class
org.h2.command.query.QueryOrderBy
Packages that use QueryOrderBy
Package
Description
This package contains the parser and the base classes for prepared SQL statements.
Contains queries.
Aggregate functions.
Base classes for data analysis operations and implementations of window functions.
Implementation of row and internal result sets.
-
Uses of QueryOrderBy in org.h2.command
Methods in org.h2.command that return QueryOrderByMethods in org.h2.command that return types with arguments of type QueryOrderByModifier and TypeMethodDescriptionprivate ArrayList
<QueryOrderBy> Parser.parseSortSpecificationList()
private ArrayList
<QueryOrderBy> Parser.readIfOrderBy()
-
Uses of QueryOrderBy in org.h2.command.query
Fields in org.h2.command.query with type parameters of type QueryOrderByModifier and TypeFieldDescription(package private) ArrayList
<QueryOrderBy> Query.orderList
Describes elements of the ORDER BY clause of a query.Method parameters in org.h2.command.query with type arguments of type QueryOrderByModifier and TypeMethodDescription(package private) void
Query.prepareOrder
(ArrayList<QueryOrderBy> orderList, int expressionCount) Create aSortOrder
object given the list ofQueryOrderBy
objects.void
Query.setOrder
(ArrayList<QueryOrderBy> order) Set the order by list. -
Uses of QueryOrderBy in org.h2.expression.aggregate
Fields in org.h2.expression.aggregate with type parameters of type QueryOrderByMethod parameters in org.h2.expression.aggregate with type arguments of type QueryOrderByModifier and TypeMethodDescription(package private) static Value
Percentile.getFromIndex
(SessionLocal session, Expression expression, int dataType, ArrayList<QueryOrderBy> orderByList, BigDecimal percentile, boolean interpolate) Get the result from the index.(package private) static Value
Percentile.getValue
(SessionLocal session, Value[] array, int dataType, ArrayList<QueryOrderBy> orderByList, BigDecimal percentile, boolean interpolate) Get the result from the array of values.void
Aggregate.setOrderByList
(ArrayList<QueryOrderBy> orderByList) Set the order for ARRAY_AGG() or GROUP_CONCAT() aggregate. -
Uses of QueryOrderBy in org.h2.expression.analysis
Fields in org.h2.expression.analysis with type parameters of type QueryOrderByMethods in org.h2.expression.analysis that return types with arguments of type QueryOrderByMethod parameters in org.h2.expression.analysis with type arguments of type QueryOrderByModifier and TypeMethodDescriptionstatic void
Window.appendOrderBy
(StringBuilder builder, ArrayList<QueryOrderBy> orderBy, int sqlFlags, boolean forceOrderBy) Appends ORDER BY clause to the specified builder.protected static SortOrder
DataAnalysisOperation.createOrder
(SessionLocal session, ArrayList<QueryOrderBy> orderBy, int offset) Create sort order.protected void
DataAnalysisOperation.updateOrderedAggregate
(SessionLocal session, SelectGroups groupData, int groupRowId, ArrayList<QueryOrderBy> orderBy) Update a row of an ordered aggregate. -
Uses of QueryOrderBy in org.h2.result
Fields in org.h2.result with type parameters of type QueryOrderByModifier and TypeFieldDescriptionprivate final ArrayList
<QueryOrderBy> SortOrder.orderList
The order list.Methods in org.h2.result that return types with arguments of type QueryOrderByModifier and TypeMethodDescriptionSortOrder.getOrderList()
Returns the original query order list.Constructor parameters in org.h2.result with type arguments of type QueryOrderByModifierConstructorDescriptionSortOrder
(SessionLocal session, int[] queryColumnIndexes, int[] sortType, ArrayList<QueryOrderBy> orderList) Construct a new sort order object.