Skip to content

Commit e538d3f

Browse files
authored
Merge 7b2e6ce into e7f9bdd
2 parents e7f9bdd + 7b2e6ce commit e538d3f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

ydb/core/tablet_flat/flat_executor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4321,7 +4321,7 @@ ui64 TExecutor::BeginCompaction(THolder<NTable::TCompactionParams> params)
43214321

43224322
comp->Epoch = snapshot->Subset->Epoch(); /* narrows requested to actual */
43234323
comp->Layout.Final = comp->Params->IsFinal;
4324-
comp->Layout.WriteBTreeIndex = AppData()->FeatureFlags.GetEnableLocalDBBtreeIndex();
4324+
comp->Layout.WriteBTreeIndex = false; // will be in 24-2: AppData()->FeatureFlags.GetEnableLocalDBBtreeIndex();
43254325
comp->Writer.StickyFlatIndex = !comp->Layout.WriteBTreeIndex;
43264326
comp->Layout.MaxRows = snapshot->Subset->MaxRows();
43274327
comp->Layout.ByKeyFilter = tableInfo->ByKeyFilter;

ydb/core/tablet_flat/flat_part_loader.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -78,7 +78,7 @@ void TLoader::StageParseMeta() noexcept
7878

7979
BTreeGroupIndexes.clear();
8080
BTreeHistoricIndexes.clear();
81-
if (AppData()->FeatureFlags.GetEnableLocalDBBtreeIndex()) {
81+
if (false) { // will be in 24-2: AppData()->FeatureFlags.GetEnableLocalDBBtreeIndex()
8282
for (bool history : {false, true}) {
8383
for (const auto &meta : history ? layout.GetBTreeHistoricIndexes() : layout.GetBTreeGroupIndexes()) {
8484
NPage::TBtreeIndexMeta converted{{

0 commit comments

Comments
 (0)