()
| 1866 | func (m *SqlUpsert) WriteDialect(w expr.DialectWriter) {} |
| 1867 | func (m *SqlUpsert) String() string { return fmt.Sprintf("%s ", m.Keyword()) } |
| 1868 | func (m *SqlUpsert) SqlSelect() *SqlSelect { return sqlSelectFromWhere(m.Table, m.Where) } |
| 1869 | |
| 1870 | func (m *SqlUpdate) Keyword() lex.TokenType { return lex.TokenUpdate } |
| 1871 | func (m *SqlUpdate) WriteDialect(w expr.DialectWriter) { |
nothing calls this directly
no test coverage detected