()
| 1711 | } |
| 1712 | func (m *SqlWhere) WriteDialect(w expr.DialectWriter) { m.writeDialectDepth(0, w) } |
| 1713 | func (m *SqlWhere) String() string { |
| 1714 | w := expr.NewDefaultWriter() |
| 1715 | m.WriteDialect(w) |
| 1716 | return w.String() |
| 1717 | } |
| 1718 | func (m *SqlWhere) Equal(s *SqlWhere) bool { |
| 1719 | if m == nil && s == nil { |
| 1720 | return true |
nothing calls this directly
no test coverage detected