Table returns the table the `UPSERT` statement is executed on.
()
| 381 | |
| 382 | // Table returns the table the `UPSERT` statement is executed on. |
| 383 | func (u *UpdateSet) Table() *SelectTable { |
| 384 | return Dialect(u.UpdateBuilder.dialect).Table(u.UpdateBuilder.table) |
| 385 | } |
| 386 | |
| 387 | // Columns returns all columns in the `INSERT` statement. |
| 388 | func (u *UpdateSet) Columns() []string { |