Skip to content

Commit

Permalink
build: fix drawin build (#9545)
Browse files Browse the repository at this point in the history
ref #6233

Signed-off-by: Lloyd-Pottiger <[email protected]>
  • Loading branch information
Lloyd-Pottiger authored Oct 22, 2024
1 parent ba157b4 commit 7ee460e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions dbms/src/Storages/DeltaMerge/ColumnFile/ColumnFileTiny.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ class ColumnFileTiny : public ColumnFilePersisted

struct IndexInfo
{
IndexInfo(PageIdU64 page_id, std::optional<dtpb::VectorIndexFileProps> vec_index)
: index_page_id(page_id)
, vector_index(vec_index)
{}

PageIdU64 index_page_id{};
std::optional<dtpb::VectorIndexFileProps> vector_index = std::nullopt;
};
Expand Down

0 comments on commit 7ee460e

Please sign in to comment.