Uses of Class
org.h2.expression.analysis.DataAnalysisOperation
-
Packages that use DataAnalysisOperation 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. -
-
Uses of DataAnalysisOperation in org.h2.command
Methods in org.h2.command with parameters of type DataAnalysisOperation Modifier and Type Method Description private void
Parser. readOver(DataAnalysisOperation operation)
-
Uses of DataAnalysisOperation in org.h2.command.query
Fields in org.h2.command.query with type parameters of type DataAnalysisOperation Modifier and Type Field Description private java.util.HashMap<DataAnalysisOperation,PartitionData>
SelectGroups. windowData
Maps an window expression object to its data.private java.util.HashMap<DataAnalysisOperation,java.util.TreeMap<Value,PartitionData>>
SelectGroups. windowPartitionData
Maps an partitioned window expression object to its data.Methods in org.h2.command.query with parameters of type DataAnalysisOperation Modifier and Type Method Description PartitionData
SelectGroups. getWindowExprData(DataAnalysisOperation expr, Value partitionKey)
Get the window data for the specified expression.void
SelectGroups. setWindowExprData(DataAnalysisOperation expr, Value partitionKey, PartitionData obj)
Set the window data for the specified expression. -
Uses of DataAnalysisOperation in org.h2.expression.aggregate
Subclasses of DataAnalysisOperation in org.h2.expression.aggregate Modifier and Type Class Description class
AbstractAggregate
A base class for aggregate functions.class
Aggregate
Implements the integrated aggregate functions, such as COUNT, MAX, SUM.class
JavaAggregate
This class wraps a user-defined aggregate. -
Uses of DataAnalysisOperation in org.h2.expression.analysis
Subclasses of DataAnalysisOperation in org.h2.expression.analysis Modifier and Type Class Description class
WindowFunction
A window function.
-