Skip to content

Commit 3e56c7a

Browse files
committed
fix
1 parent 73fd870 commit 3e56c7a

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

be/src/olap/rowset/segment_v2/segment.h

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -77,6 +77,11 @@ using SparseColumnCacheSPtr = std::shared_ptr<SparseColumnCache>;
7777
using PathToSparseColumnCache = std::unordered_map<std::string, SparseColumnCacheSPtr>;
7878
using PathToSparseColumnCacheUPtr = std::unique_ptr<PathToSparseColumnCache>;
7979

80+
struct BinaryColumnCache;
81+
using BinaryColumnCacheSPtr = std::shared_ptr<BinaryColumnCache>;
82+
using PathToBinaryColumnCache = std::unordered_map<std::string, BinaryColumnCacheSPtr>;
83+
using PathToBinaryColumnCacheUPtr = std::unique_ptr<PathToBinaryColumnCache>;
84+
8085
// A Segment is used to represent a segment in memory format. When segment is
8186
// generated, it won't be modified, so this struct aimed to help read operation.
8287
// It will prepare all ColumnReader to create ColumnIterator as needed.

0 commit comments

Comments
 (0)