* garrow_table_datum_new: * @value: A #GArrowTable. * * Returns: A newly created #GArrowTableDatum. * * Since: 1.0.0 */
| 711 | * Since: 1.0.0 |
| 712 | */ |
| 713 | GArrowTableDatum * |
| 714 | garrow_table_datum_new(GArrowTable *value) |
| 715 | { |
| 716 | auto arrow_value = garrow_table_get_raw(value); |
| 717 | arrow::Datum arrow_datum(arrow_value); |
| 718 | return garrow_table_datum_new_raw(&arrow_datum, value); |
| 719 | } |
| 720 | |
| 721 | G_END_DECLS |
| 722 |
nothing calls this directly
no test coverage detected