GetInExpression gets an InExpression from the pool
()
| 1192 | |
| 1193 | // GetInExpression gets an InExpression from the pool |
| 1194 | func GetInExpression() *InExpression { |
| 1195 | ie := inExprPool.Get().(*InExpression) |
| 1196 | ie.List = ie.List[:0] |
| 1197 | return ie |
| 1198 | } |
| 1199 | |
| 1200 | // PutInExpression returns an InExpression to the pool |
| 1201 | func PutInExpression(ie *InExpression) { |