GetUpdateExpression gets an UpdateExpression from the pool
()
| 629 | |
| 630 | // GetUpdateExpression gets an UpdateExpression from the pool |
| 631 | func GetUpdateExpression() *UpdateExpression { |
| 632 | return updateExprPool.Get().(*UpdateExpression) |
| 633 | } |
| 634 | |
| 635 | // PutUpdateExpression returns an UpdateExpression to the pool |
| 636 | func PutUpdateExpression(expr *UpdateExpression) { |