Package org.h2.expression.aggregate
Class AggregateDataBinarySet
- java.lang.Object
-
- org.h2.expression.aggregate.AggregateData
-
- org.h2.expression.aggregate.AggregateDataBinarySet
-
- Direct Known Subclasses:
AggregateDataCorr
,AggregateDataCovar
abstract class AggregateDataBinarySet extends AggregateData
Aggregate data of binary set functions.
-
-
Constructor Summary
Constructors Constructor Description AggregateDataBinarySet()
-
Method Summary
All Methods Instance Methods Abstract Methods Concrete Methods Modifier and Type Method Description (package private) void
add(SessionLocal session, Value v)
Add a value to this aggregate.(package private) abstract void
add(SessionLocal session, Value yValue, Value xValue)
-
Methods inherited from class org.h2.expression.aggregate.AggregateData
getValue
-
-
-
-
Method Detail
-
add
abstract void add(SessionLocal session, Value yValue, Value xValue)
-
add
final void add(SessionLocal session, Value v)
Description copied from class:AggregateData
Add a value to this aggregate.- Specified by:
add
in classAggregateData
- Parameters:
session
- the sessionv
- the value
-
-