Skip to content

Commit 3ddc5ea

Browse files
committed
fix only flat
1 parent a7453b1 commit 3ddc5ea

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

ydb/core/tablet_flat/flat_fwd_cache.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
#include "flat_fwd_iface.h"
55
#include "flat_fwd_misc.h"
66
#include "flat_fwd_page.h"
7+
#include "flat_part_index_iter.h"
78
#include "flat_part_index_iter_iface.h"
89
#include "flat_table_part.h"
910
#include "flat_part_slice.h"
@@ -60,7 +61,7 @@ namespace NFwd {
6061
TCache() = delete;
6162

6263
TCache(const TPart* part, IPages* env, TGroupId groupId, const TIntrusiveConstPtr<TSlices>& bounds = nullptr)
63-
: Index(CreateIndexIter(part, env, groupId))
64+
: Index(MakeHolder<TPartIndexIt>(part, env, groupId)) // TODO: use CreateIndexIter(part, env, groupId)
6465
{
6566
if (bounds && !bounds->empty()) {
6667
BeginRowId = bounds->front().BeginRowId();

0 commit comments

Comments
 (0)