(clause string, key string, val dynamodb.AttributeValue)
| 69 | } |
| 70 | |
| 71 | func (b *expressionBuilder) SET(clause string, key string, val dynamodb.AttributeValue) { |
| 72 | b.clauses["SET"] = append(b.clauses["SET"], clause) |
| 73 | b.keys[key] = struct{}{} |
| 74 | b.values[key] = val |
| 75 | } |
| 76 | |
| 77 | func (b *expressionBuilder) condition(condition string, references ...string) { |
| 78 | b.conditions = append(b.conditions, condition) |
no outgoing calls
no test coverage detected