Expr raw expression
| 19 | |
| 20 | // Expr raw expression |
| 21 | type Expr struct { |
| 22 | SQL string |
| 23 | Vars []interface{} |
| 24 | WithoutParentheses bool |
| 25 | } |
| 26 | |
| 27 | // Build build raw expression |
| 28 | func (expr Expr) Build(builder Builder) { |
nothing calls this directly
no outgoing calls
no test coverage detected