(attributeName string, value Value)
| 150 | } |
| 151 | |
| 152 | func (b *expressionBuilder) updateSET(attributeName string, value Value) { |
| 153 | b.SET(fmt.Sprintf("#%v = :%v", attributeName, attributeName), attributeName, value.ToAV()) |
| 154 | } |
| 155 | |
| 156 | func (b *expressionBuilder) updateSetAV(attributeName string, av dynamodb.AttributeValue) { |
| 157 | b.SET(fmt.Sprintf("#%v = :%v", attributeName, attributeName), attributeName, av) |
no test coverage detected