GetUpdateStatement gets an UpdateStatement from the pool
()
| 578 | |
| 579 | // GetUpdateStatement gets an UpdateStatement from the pool |
| 580 | func GetUpdateStatement() *UpdateStatement { |
| 581 | return updateStmtPool.Get().(*UpdateStatement) |
| 582 | } |
| 583 | |
| 584 | // PutUpdateStatement returns an UpdateStatement to the pool |
| 585 | func PutUpdateStatement(stmt *UpdateStatement) { |