blob: 8f3468a68ed146b864dbd426ba33749c2fc9f43f (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
#pragma once
#include <util/system/types.h>
namespace NKikimr {
namespace NMiniKQL {
constexpr ui64 BlockMapJoinIndexEntrySize = 20;
ui64 EstimateBlockMapJoinIndexSize(ui64 rowsCount);
} // namespace NMiniKQL
} // namespace NKikimr
|