(cfg *SQLGenerator, not bool, other Node)
| 65 | } |
| 66 | |
| 67 | func (e equality) EqualsSQLString(cfg *SQLGenerator, not bool, other Node) (string, error) { |
| 68 | return boolEqualsSQLString(cfg, e, not, other) |
| 69 | } |
| 70 | |
| 71 | func boolEqualsSQLString(cfg *SQLGenerator, a BooleanNode, not bool, other Node) (string, error) { |
| 72 | switch other.UseAs().(type) { |
nothing calls this directly
no test coverage detected