| 13 | ) |
| 14 | |
| 15 | type orderByClause struct { |
| 16 | isOrderByClause |
| 17 | expression Expression |
| 18 | ascent bool |
| 19 | } |
| 20 | |
| 21 | func (o *orderByClause) SerializeSql(out *bytes.Buffer) error { |
| 22 | if o.expression == nil { |
nothing calls this directly
no outgoing calls
no test coverage detected