Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions root/io/hadd/merge_changeComp_check_output.C
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ int merge_changeComp_check_output(int expectedCompressionRNT, int expectedCompre
ROOT::Internal::RPageSourceFile source("ntpl", fnameOut, ROOT::RNTupleReadOptions());
source.Attach();

Internal::RClusterPool pool{source};
ROOT::Internal::RClusterPool pool{source};

const auto expCompAlgo = ROOT::RCompressionSetting::AlgorithmFromCompressionSettings(expectedCompressionRNT);
const auto &desc = source.GetSharedDescriptorGuard();
Expand All @@ -44,7 +44,7 @@ int merge_changeComp_check_output(int expectedCompressionRNT, int expectedCompre
std::uint64_t pageIdx = 0;
for (const auto &pageInfo : pages.GetPageInfos()) {
auto cluster = pool.GetCluster(clusterDesc.GetId(), {column.GetPhysicalId()});
Internal::ROnDiskPage::Key key{column.GetPhysicalId(), pageIdx};
ROOT::Internal::ROnDiskPage::Key key{column.GetPhysicalId(), pageIdx};
auto onDiskPage = cluster->GetOnDiskPage(key);
R__ASSERT(onDiskPage);
const auto actualCompAlgo =
Expand Down