GetBetweenExpression gets a BetweenExpression from the pool
()
| 1172 | |
| 1173 | // GetBetweenExpression gets a BetweenExpression from the pool |
| 1174 | func GetBetweenExpression() *BetweenExpression { |
| 1175 | return betweenExprPool.Get().(*BetweenExpression) |
| 1176 | } |
| 1177 | |
| 1178 | // PutBetweenExpression returns a BetweenExpression to the pool |
| 1179 | func PutBetweenExpression(be *BetweenExpression) { |