PutDescribeStatement returns a DescribeStatement to the pool.
(stmt *DescribeStatement)
| 1747 | |
| 1748 | // PutDescribeStatement returns a DescribeStatement to the pool. |
| 1749 | func PutDescribeStatement(stmt *DescribeStatement) { |
| 1750 | if stmt == nil { |
| 1751 | return |
| 1752 | } |
| 1753 | |
| 1754 | stmt.TableName = "" |
| 1755 | |
| 1756 | describeStmtPool.Put(stmt) |
| 1757 | } |
| 1758 | |
| 1759 | // GetReplaceStatement gets a ReplaceStatement from the pool. |
| 1760 | func GetReplaceStatement() *ReplaceStatement { |