aggregatePlan.go 244 B

1234567891011121314
  1. package planner
  2. import "github.com/emqx/kuiper/xsql"
  3. type AggregatePlan struct {
  4. baseLogicalPlan
  5. dimensions xsql.Dimensions
  6. alias xsql.Fields
  7. }
  8. func (p AggregatePlan) Init() *AggregatePlan {
  9. p.baseLogicalPlan.self = &p
  10. return &p
  11. }