| 1503 | } |
| 1504 | |
| 1505 | type CreateFunction struct { |
| 1506 | CreatePos Pos |
| 1507 | OrReplace bool |
| 1508 | IfNotExists bool |
| 1509 | FunctionName *Ident |
| 1510 | OnCluster *ClusterClause |
| 1511 | Params *ParamExprList |
| 1512 | Expr Expr |
| 1513 | } |
| 1514 | |
| 1515 | func (c *CreateFunction) Type() string { |
| 1516 | return "FUNCTION" |
nothing calls this directly
no outgoing calls
no test coverage detected