MCPcopy Create free account
hub / github.com/apache/arrow / ggandiva_selection_vector_to_array

Function ggandiva_selection_vector_to_array

c_glib/gandiva-glib/selection-vector.cpp:142–148  ·  view source on GitHub ↗

* ggandiva_selection_vector_to_array: * @selection_vector: A #GGandivaSelectionVector. * * Returns: (transfer full): A #GArrowArray that has the same content * of the selection vector. * * Since: 4.0.0 */

Source from the content-addressed store, hash-verified

140 * Since: 4.0.0
141 */
142GArrowArray *
143ggandiva_selection_vector_to_array(GGandivaSelectionVector *selection_vector)
144{
145 auto gandiva_selection_vector = ggandiva_selection_vector_get_raw(selection_vector);
146 auto arrow_array = gandiva_selection_vector->ToArray();
147 return garrow_array_new_raw(&arrow_array);
148}
149
150G_DEFINE_TYPE(GGandivaUInt16SelectionVector,
151 ggandiva_uint16_selection_vector,

Callers

nothing calls this directly

Calls 3

garrow_array_new_rawFunction · 0.85
ToArrayMethod · 0.45

Tested by

no test coverage detected