(attributeName string, value Value)
| 138 | } |
| 139 | |
| 140 | func (b *expressionBuilder) addConditionLessThan(attributeName string, value Value) { |
| 141 | valueName := "cval" + strconv.Itoa(len(b.conditions)) |
| 142 | b.condition(fmt.Sprintf("#%v < :%v", attributeName, valueName), attributeName) |
| 143 | b.values[valueName] = value.ToAV() |
| 144 | } |
| 145 | |
| 146 | func (b *expressionBuilder) addConditionLessThanOrEqualTo(attributeName string, value Value) { |
| 147 | valueName := "cval" + strconv.Itoa(len(b.conditions)) |
no test coverage detected