| 276 | } |
| 277 | |
| 278 | type funcExpression struct { |
| 279 | isExpression |
| 280 | funcName string |
| 281 | args *listClause |
| 282 | } |
| 283 | |
| 284 | func (c *funcExpression) SerializeSql(out *bytes.Buffer) (err error) { |
| 285 | if !validIdentifierName(c.funcName) { |
nothing calls this directly
no outgoing calls
no test coverage detected