| 953 | } |
| 954 | |
| 955 | ExtensionIdRegistry::SubstraitCallToArrow DecodeConcatMapping() { |
| 956 | return [](const SubstraitCall& call) -> Result<compute::Expression> { |
| 957 | ARROW_ASSIGN_OR_RAISE(std::vector<compute::Expression> value_args, |
| 958 | GetValueArgs(call, 0)); |
| 959 | value_args.push_back(compute::literal("")); |
| 960 | return compute::call("binary_join_element_wise", std::move(value_args)); |
| 961 | }; |
| 962 | } |
| 963 | |
| 964 | ExtensionIdRegistry::SubstraitAggregateToArrow DecodeBasicAggregate( |
| 965 | const std::string& arrow_function_name) { |
no test coverage detected