Uses of Class
org.h2.command.query.QueryOrderBy
Packages that use QueryOrderBy
Package
Description
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.query
Method parameters in org.h2.command.query with type arguments of type QueryOrderByModifier and TypeMethodDescriptionvoidQuery.setOrder(ArrayList<QueryOrderBy> order) Set the order by list. -
Uses of QueryOrderBy in org.h2.expression.aggregate
Method parameters in org.h2.expression.aggregate with type arguments of type QueryOrderByModifier and TypeMethodDescriptionvoidAggregate.setOrderByList(ArrayList<QueryOrderBy> orderByList) Set the order for ARRAY_AGG() or GROUP_CONCAT() aggregate. -
Uses of QueryOrderBy in org.h2.expression.analysis
Methods 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 voidWindow.appendOrderBy(StringBuilder builder, ArrayList<QueryOrderBy> orderBy, int sqlFlags, boolean forceOrderBy) Appends ORDER BY clause to the specified builder.protected static SortOrderDataAnalysisOperation.createOrder(SessionLocal session, ArrayList<QueryOrderBy> orderBy, int offset) Create sort order.protected voidDataAnalysisOperation.updateOrderedAggregate(SessionLocal session, SelectGroups groupData, int groupRowId, ArrayList<QueryOrderBy> orderBy) Update a row of an ordered aggregate. -
Uses of QueryOrderBy in org.h2.result
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.