File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
be/src/olap/rowset/segment_v2 Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change @@ -77,6 +77,11 @@ using SparseColumnCacheSPtr = std::shared_ptr<SparseColumnCache>;
7777using PathToSparseColumnCache = std::unordered_map<std::string, SparseColumnCacheSPtr>;
7878using 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.
You can’t perform that action at this time.
0 commit comments