| 114 | "non_existent_type_1"}; |
| 115 | |
| 116 | ExtensionIdRegistry::SubstraitAggregateToArrow MakeSubstraitAggregateToArrow( |
| 117 | const std::string& name) { |
| 118 | return [&name](const SubstraitCall& call) -> Result<arrow::compute::Aggregate> { |
| 119 | return arrow::compute::Aggregate{std::string(call.id().name), std::string(name)}; |
| 120 | }; |
| 121 | } |
| 122 | |
| 123 | using ExtensionIdRegistryParams = |
| 124 | std::tuple<std::shared_ptr<ExtensionIdRegistryProvider>, std::string>; |