Uses of Class
org.h2.command.query.QueryOrderBy
-
Packages that use QueryOrderBy Package Description org.h2.command This package contains the parser and the base classes for prepared SQL statements.org.h2.command.query Contains queries.org.h2.expression.aggregate Aggregate functions.org.h2.expression.analysis Base classes for data analysis operations and implementations of window functions.org.h2.result Implementation of row and internal result sets. -
-
Uses of QueryOrderBy in org.h2.command
Methods in org.h2.command that return QueryOrderBy Modifier and Type Method Description private QueryOrderBy
Parser. parseSortSpecification()
Methods in org.h2.command that return types with arguments of type QueryOrderBy Modifier and Type Method Description private java.util.ArrayList<QueryOrderBy>
Parser. parseSortSpecificationList()
private java.util.ArrayList<QueryOrderBy>
Parser. readIfOrderBy()
-
Uses of QueryOrderBy in org.h2.command.query
Fields in org.h2.command.query with type parameters of type QueryOrderBy Modifier and Type Field Description (package private) java.util.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 QueryOrderBy Modifier and Type Method Description (package private) void
Query. prepareOrder(java.util.ArrayList<QueryOrderBy> orderList, int expressionCount)
Create aSortOrder
object given the list ofQueryOrderBy
objects.void
Query. setOrder(java.util.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 QueryOrderBy Modifier and Type Field Description private java.util.ArrayList<QueryOrderBy>
Aggregate. orderByList
Method parameters in org.h2.expression.aggregate with type arguments of type QueryOrderBy Modifier and Type Method Description (package private) static Value
Percentile. getFromIndex(SessionLocal session, Expression expression, int dataType, java.util.ArrayList<QueryOrderBy> orderByList, java.math.BigDecimal percentile, boolean interpolate)
Get the result from the index.(package private) static Value
Percentile. getValue(SessionLocal session, Value[] array, int dataType, java.util.ArrayList<QueryOrderBy> orderByList, java.math.BigDecimal percentile, boolean interpolate)
Get the result from the array of values.void
Aggregate. setOrderByList(java.util.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 QueryOrderBy Modifier and Type Field Description private java.util.ArrayList<QueryOrderBy>
Window. orderBy
Methods in org.h2.expression.analysis that return types with arguments of type QueryOrderBy Modifier and Type Method Description java.util.ArrayList<QueryOrderBy>
Window. getOrderBy()
Returns ORDER BY clause.Method parameters in org.h2.expression.analysis with type arguments of type QueryOrderBy Modifier and Type Method Description static void
Window. appendOrderBy(java.lang.StringBuilder builder, java.util.ArrayList<QueryOrderBy> orderBy, int sqlFlags, boolean forceOrderBy)
Appends ORDER BY clause to the specified builder.protected static SortOrder
DataAnalysisOperation. createOrder(SessionLocal session, java.util.ArrayList<QueryOrderBy> orderBy, int offset)
Create sort order.protected void
DataAnalysisOperation. updateOrderedAggregate(SessionLocal session, SelectGroups groupData, int groupRowId, java.util.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 QueryOrderBy Modifier and Type Field Description private java.util.ArrayList<QueryOrderBy>
SortOrder. orderList
The order list.Methods in org.h2.result that return types with arguments of type QueryOrderBy Modifier and Type Method Description java.util.ArrayList<QueryOrderBy>
SortOrder. getOrderList()
Returns the original query order list.Constructor parameters in org.h2.result with type arguments of type QueryOrderBy Constructor Description SortOrder(SessionLocal session, int[] queryColumnIndexes, int[] sortType, java.util.ArrayList<QueryOrderBy> orderList)
Construct a new sort order object.
-