| 361 | } |
| 362 | |
| 363 | void DiskObjectStorage::removeSharedFiles(const RemoveBatchRequest & files, bool keep_all_batch_data, const NameSet & file_names_remove_metadata_only) |
| 364 | { |
| 365 | auto transaction = createObjectStorageTransaction(); |
| 366 | transaction->removeSharedFiles(files, keep_all_batch_data, file_names_remove_metadata_only); |
| 367 | transaction->commit(); |
| 368 | } |
| 369 | |
| 370 | UInt32 DiskObjectStorage::getRefCount(const String & path) const |
| 371 | { |
no test coverage detected