()
| 1145 | return false |
| 1146 | } |
| 1147 | func (m *SqlSelect) String() string { |
| 1148 | w := NewSqlDialect() |
| 1149 | m.writeDialectDepth(0, w) |
| 1150 | return w.String() |
| 1151 | } |
| 1152 | func (m *SqlSelect) writeDialectDepth(depth int, w expr.DialectWriter) { |
| 1153 | |
| 1154 | io.WriteString(w, "SELECT ") |
nothing calls this directly
no test coverage detected