()
| 1887 | } |
| 1888 | } |
| 1889 | func (m *SqlUpdate) String() string { |
| 1890 | w := expr.NewDefaultWriter() |
| 1891 | m.WriteDialect(w) |
| 1892 | return w.String() |
| 1893 | } |
| 1894 | func (m *SqlUpdate) SqlSelect() *SqlSelect { return sqlSelectFromWhere(m.Table, m.Where) } |
| 1895 | |
| 1896 | func sqlSelectFromWhere(from string, where *SqlWhere) *SqlSelect { |
nothing calls this directly
no test coverage detected