| 11289 | } |
| 11290 | |
| 11291 | GArrowTakeOptions * |
| 11292 | garrow_take_options_new_raw(const arrow::compute::TakeOptions *arrow_options) |
| 11293 | { |
| 11294 | auto options = GARROW_TAKE_OPTIONS(g_object_new(GARROW_TYPE_TAKE_OPTIONS, NULL)); |
| 11295 | /* TODO: Use property when we add support for boundscheck. */ |
| 11296 | auto arrow_new_options = garrow_take_options_get_raw(options); |
| 11297 | arrow_new_options->boundscheck = arrow_options->boundscheck; |
| 11298 | return options; |
| 11299 | } |
| 11300 | |
| 11301 | arrow::compute::TakeOptions * |
| 11302 | garrow_take_options_get_raw(GArrowTakeOptions *options) |
no test coverage detected