| 657 | } |
| 658 | |
| 659 | type updateStatementImpl struct { |
| 660 | table WritableTable |
| 661 | updateValues map[NonAliasColumn]Expression |
| 662 | where BoolExpression |
| 663 | order *listClause |
| 664 | limit int64 |
| 665 | comment string |
| 666 | } |
| 667 | |
| 668 | func (u *updateStatementImpl) Set( |
| 669 | column NonAliasColumn, |
nothing calls this directly
no outgoing calls
no test coverage detected