Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
Signed-off-by: Lloyd-Pottiger <[email protected]>
  • Loading branch information
Lloyd-Pottiger committed Sep 26, 2024
1 parent cd9b315 commit 51b8fe1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dbms/src/Storages/DeltaMerge/File/DMFileIndexWriter.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,13 +39,13 @@ struct LocalIndexBuildInfo
LocalIndexInfosPtr indexes_to_build;

public:
std::vector<PageIdU64> filesIDs() const
std::vector<LocalIndexerScheduler::FileID> filesIDs() const
{
std::vector<PageIdU64> ids;
std::vector<LocalIndexerScheduler::FileID> ids;
ids.reserve(dm_files.size());
for (const auto & dmf : dm_files)
{
ids.emplace_back(dmf->fileId());
ids.emplace_back(LocalIndexerScheduler::DMFileID(dmf->fileId()));
}
return ids;
}
Expand Down

0 comments on commit 51b8fe1

Please sign in to comment.