FuncExpr represents a function call that takes SelectExprs.
| 2467 | |
| 2468 | // FuncExpr represents a function call that takes SelectExprs. |
| 2469 | type FuncExpr struct { |
| 2470 | Qualifier Ident |
| 2471 | Name Ident |
| 2472 | Distinct bool |
| 2473 | Exprs SelectExprs |
| 2474 | WithinGroup OrderBy |
| 2475 | Over *OverExpr |
| 2476 | } |
| 2477 | |
| 2478 | // Format formats the node. |
| 2479 | func (node *FuncExpr) Format(buf *nodeBuffer) { |
nothing calls this directly
no outgoing calls
no test coverage detected