func_call.go 335 B

12345678910111213141516171819
  1. package ast
  2. type FuncCall struct {
  3. Func *FuncName
  4. Funcname *List
  5. Args *List
  6. AggOrder *List
  7. AggFilter Node
  8. AggWithinGroup bool
  9. AggStar bool
  10. AggDistinct bool
  11. FuncVariadic bool
  12. Over *WindowDef
  13. Location int
  14. }
  15. func (n *FuncCall) Pos() int {
  16. return n.Location
  17. }