()
| 90 | } |
| 91 | |
| 92 | func (b *expressionBuilder) expressionAttributeNames() map[string]string { |
| 93 | if len(b.keys) == 0 { |
| 94 | return nil |
| 95 | } |
| 96 | |
| 97 | out := make(map[string]string) |
| 98 | |
| 99 | for n := range b.keys { |
| 100 | out["#"+n] = n |
| 101 | } |
| 102 | |
| 103 | return out |
| 104 | } |
| 105 | |
| 106 | func (b *expressionBuilder) expressionAttributeValues() map[string]dynamodb.AttributeValue { |
| 107 | if len(b.values) == 0 { |
no outgoing calls
no test coverage detected