Expr represents an expression.
| 1917 | |
| 1918 | // Expr represents an expression. |
| 1919 | type Expr interface { |
| 1920 | iExpr() |
| 1921 | SQLNode |
| 1922 | } |
| 1923 | |
| 1924 | func (*AndExpr) iExpr() {} |
| 1925 | func (*OrExpr) iExpr() {} |
nothing calls this directly
no outgoing calls
no test coverage detected