Uses of Package
edu.caltech.nanodb.functions
-
Packages that use edu.caltech.nanodb.functions Package Description edu.caltech.nanodb.expressions This package contains classes for representing and evaluating arithmetic and logical expressions.edu.caltech.nanodb.functions This package contains the abstractions for supporting simple functions, aggregate functions, and table-returning functions in NanoDB.edu.caltech.nanodb.plannodes This package contains classes for representing query execution plans, as well as analyzing their costs.edu.caltech.nanodb.server edu.caltech.nanodb.sqlparse -
Classes in edu.caltech.nanodb.functions used by edu.caltech.nanodb.expressions Class Description Function This is the root class of all kinds of functions in NanoDB.FunctionDirectory This class is a directory of all functions recognized within NanoDB, including simple functions, aggregate functions and table functions. -
Classes in edu.caltech.nanodb.functions used by edu.caltech.nanodb.functions Class Description AggregateFunction This class provides the general abstraction for aggregate functions.CountAggregate This aggregate function can be used to compute both COUNT(...) and COUNT(DISTINCT ...) aggregate functions.Function This is the root class of all kinds of functions in NanoDB.MinMaxAggregate This aggregate function can be used to compute either the minimum or the maximum of a collection of values.ScalarFunction This class represents functions that return a scalar value.SimpleFunction Created by donnie on 12/5/13.StdDevVarAggregate This aggregate function can be used to compute either the standard deviation or the variance of a collection of values.SumAvgAggregate This aggregate function can be used to compute both SUM and AVERAGE functions. -
Classes in edu.caltech.nanodb.functions used by edu.caltech.nanodb.plannodes Class Description TableFunction This is the base-class for all table-returning functions. -
Classes in edu.caltech.nanodb.functions used by edu.caltech.nanodb.server Class Description FunctionDirectory This class is a directory of all functions recognized within NanoDB, including simple functions, aggregate functions and table functions. -
Classes in edu.caltech.nanodb.functions used by edu.caltech.nanodb.sqlparse Class Description FunctionDirectory This class is a directory of all functions recognized within NanoDB, including simple functions, aggregate functions and table functions.