| 860 | } |
| 861 | |
| 862 | Result<std::shared_ptr<Schema>> PartitioningOrFactory::GetOrInferSchema( |
| 863 | const std::vector<std::string>& paths) { |
| 864 | if (auto part = partitioning()) { |
| 865 | return part->schema(); |
| 866 | } |
| 867 | return factory()->Inspect(paths); |
| 868 | } |
| 869 | |
| 870 | } // namespace dataset |
| 871 | } // namespace arrow |
nothing calls this directly
no test coverage detected