MCPcopy Create free account
hub / github.com/apache/cloudberry / array_free_iterator

Function array_free_iterator

src/backend/utils/adt/arrayfuncs.c:4648–4657  ·  view source on GitHub ↗

* Release an ArrayIterator data structure */

Source from the content-addressed store, hash-verified

4646 * Release an ArrayIterator data structure
4647 */
4648void
4649array_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/***************************************************************************/

Callers 4

ArrayFreeIteratorMethod · 0.85
array_position_commonFunction · 0.85
array_positionsFunction · 0.85
ora_greatest_leastFunction · 0.85

Calls 1

pfreeFunction · 0.50

Tested by

no test coverage detected