NewDropSequenceStatement retrieves a DropSequenceStatement from the pool.
()
| 1824 | |
| 1825 | // NewDropSequenceStatement retrieves a DropSequenceStatement from the pool. |
| 1826 | func NewDropSequenceStatement() *DropSequenceStatement { |
| 1827 | return dropSequencePool.Get().(*DropSequenceStatement) |
| 1828 | } |
| 1829 | |
| 1830 | // ReleaseDropSequenceStatement returns a DropSequenceStatement to the pool. |
| 1831 | // Always call this with defer after parsing is complete. |
no test coverage detected