예제 #1
0
파일: agg_sum.go 프로젝트: pkdevboxy/query
/*
It calls the VisitFunction method by passing in the receiver to
and returns the interface. It is a visitor pattern.
*/
func (this *Sum) Accept(visitor expression.Visitor) (interface{}, error) {
	return visitor.VisitFunction(this)
}
예제 #2
0
/*
It calls the VisitFunction method by passing in the receiver to
and returns the interface. It is a visitor pattern.
*/
func (this *ArrayAggDistinct) Accept(visitor expression.Visitor) (interface{}, error) {
	return visitor.VisitFunction(this)
}