| 375 | } |
| 376 | |
| 377 | Result<std::vector<KeyValuePartitioning::Key>> DirectoryPartitioning::ParseKeys( |
| 378 | const std::string& path) const { |
| 379 | std::vector<std::string> segments = |
| 380 | fs::internal::SplitAbstractPath(fs::internal::GetAbstractPathParent(path).first); |
| 381 | return ParsePartitionSegments(segments); |
| 382 | } |
| 383 | |
| 384 | bool DirectoryPartitioning::Equals(const Partitioning& other) const { |
| 385 | return type_name() == other.type_name() && KeyValuePartitioning::Equals(other); |
nothing calls this directly
no test coverage detected