GetAlterStatement gets an AlterStatement from the pool.
()
| 1793 | |
| 1794 | // GetAlterStatement gets an AlterStatement from the pool. |
| 1795 | func GetAlterStatement() *AlterStatement { |
| 1796 | return alterStmtPool.Get().(*AlterStatement) |
| 1797 | } |
| 1798 | |
| 1799 | // PutAlterStatement returns an AlterStatement to the pool. |
| 1800 | // It zeroes all fields; the Operation interface value is cleared but |