(w expr.DialectWriter)
| 1332 | return w.String() |
| 1333 | } |
| 1334 | func (m *SqlSource) WriteDialect(w expr.DialectWriter) { |
| 1335 | m.writeDialectDepth(0, w) |
| 1336 | } |
| 1337 | func (m *SqlSource) writeDialectDepth(depth int, w expr.DialectWriter) { |
| 1338 | |
| 1339 | if int(m.Op) == 0 && int(m.LeftOrRight) == 0 && int(m.JoinType) == 0 { |
no test coverage detected