| 394 | } |
| 395 | |
| 396 | GArrowExpression * |
| 397 | garrow_expression_new_raw(const arrow::compute::Expression &arrow_expression, |
| 398 | const gchar *first_property_name, |
| 399 | ...) |
| 400 | { |
| 401 | va_list args; |
| 402 | va_start(args, first_property_name); |
| 403 | auto array = |
| 404 | garrow_expression_new_raw_valist(arrow_expression, first_property_name, args); |
| 405 | va_end(args); |
| 406 | return array; |
| 407 | } |
| 408 | |
| 409 | GArrowExpression * |
| 410 | garrow_expression_new_raw_valist(const arrow::compute::Expression &arrow_expression, |
no test coverage detected