* Release an ArrayIterator data structure */
| 4646 | * Release an ArrayIterator data structure |
| 4647 | */ |
| 4648 | void |
| 4649 | array_free_iterator(ArrayIterator iterator) |
| 4650 | { |
| 4651 | if (iterator->slice_ndim > 0) |
| 4652 | { |
| 4653 | pfree(iterator->slice_values); |
| 4654 | pfree(iterator->slice_nulls); |
| 4655 | } |
| 4656 | pfree(iterator); |
| 4657 | } |
| 4658 | |
| 4659 | |
| 4660 | /***************************************************************************/ |
no test coverage detected