in expression representation
| 547 | |
| 548 | // in expression representation |
| 549 | type inExpression struct { |
| 550 | isExpression |
| 551 | isBoolExpression |
| 552 | |
| 553 | lhs Expression |
| 554 | rhs *listClause |
| 555 | |
| 556 | err error |
| 557 | } |
| 558 | |
| 559 | func (c *inExpression) SerializeSql(out *bytes.Buffer) error { |
| 560 | if c.err != nil { |
nothing calls this directly
no outgoing calls
no test coverage detected