Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var AggregateTable = map[string]execution.AggregatePrototype{ NewAverage().String(): func() execution.Aggregate { return NewAverage() }, NewDistinct(NewAverage()).String(): func() execution.Aggregate { return NewDistinct(NewAverage()) }, NewCount().String(): func() execution.Aggregate { return NewCount() }, NewDistinct(NewCount()).String(): func() execution.Aggregate { return NewDistinct(NewCount()) }, NewFirst().String(): func() execution.Aggregate { return NewFirst() }, NewLast().String(): func() execution.Aggregate { return NewLast() }, NewMax().String(): func() execution.Aggregate { return NewMax() }, NewMin().String(): func() execution.Aggregate { return NewMin() }, NewSum().String(): func() execution.Aggregate { return NewSum() }, NewDistinct(NewSum()).String(): func() execution.Aggregate { return NewDistinct(NewSum()) }, }
Functions ¶
This section is empty.
Types ¶
type Average ¶
type Average struct {
// contains filtered or unexported fields
}
func NewAverage ¶
func NewAverage() *Average
func (*Average) Document ¶
func (agg *Average) Document() docs.Documentation
func (*Average) GetAggregated ¶
type Count ¶
type Count struct {
// contains filtered or unexported fields
}
func (*Count) Document ¶
func (agg *Count) Document() docs.Documentation
func (*Count) GetAggregated ¶
type Distinct ¶
type Distinct struct {
// contains filtered or unexported fields
}
func NewDistinct ¶
func (*Distinct) Document ¶
func (agg *Distinct) Document() docs.Documentation
func (*Distinct) GetAggregated ¶
type First ¶
type First struct {
// contains filtered or unexported fields
}
func (*First) Document ¶
func (agg *First) Document() docs.Documentation
func (*First) GetAggregated ¶
type Last ¶
type Last struct {
// contains filtered or unexported fields
}
func (*Last) Document ¶
func (agg *Last) Document() docs.Documentation
func (*Last) GetAggregated ¶
type Max ¶
type Max struct {
// contains filtered or unexported fields
}
func (*Max) Document ¶
func (agg *Max) Document() docs.Documentation
type Min ¶
type Min struct {
// contains filtered or unexported fields
}
func (*Min) Document ¶
func (agg *Min) Document() docs.Documentation
Source Files
¶
Click to show internal directories.
Click to hide internal directories.