| 401 | } |
| 402 | |
| 403 | Result<PartitionPathFormat> DirectoryPartitioning::FormatValues( |
| 404 | const ScalarVector& values) const { |
| 405 | std::vector<std::string> segments; |
| 406 | ARROW_ASSIGN_OR_RAISE(segments, FormatPartitionSegments(values)); |
| 407 | return PartitionPathFormat{fs::internal::JoinAbstractPath(std::move(segments)), ""}; |
| 408 | } |
| 409 | |
| 410 | Result<PartitionPathFormat> FilenamePartitioning::FormatValues( |
| 411 | const ScalarVector& values) const { |
nothing calls this directly
no test coverage detected