(cfg *SQLGenerator, not bool, other Node)
| 105 | } |
| 106 | |
| 107 | func (s astStringVar) EqualsSQLString(cfg *SQLGenerator, not bool, other Node) (string, error) { |
| 108 | switch other.UseAs().(type) { |
| 109 | case AstString: |
| 110 | return basicSQLEquality(cfg, not, s, other), nil |
| 111 | default: |
| 112 | return "", xerrors.Errorf("unsupported equality: %T %s %T", s, equalsOp(not), other) |
| 113 | } |
| 114 | } |
nothing calls this directly
no test coverage detected