MCPcopy Create free account
hub / github.com/araddon/qlbridge / String

Method String

rel/sql.go:1713–1717  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls 3

WriteDialectMethod · 0.95
NewDefaultWriterFunction · 0.92
StringMethod · 0.65

Tested by

no test coverage detected