Skip to content

Commit 3df352f

Browse files
committed
fix test
1 parent 5b2997a commit 3df352f

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

ydb/core/tx/columnshard/tables_manager.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -137,6 +137,7 @@ bool TTablesManager::InitFromDB(NIceDb::TNiceDb& db) {
137137
Ttl[pathId] = std::move(deserializedTtl);
138138
} else {
139139
Ttl.erase(pathId);
140+
}
140141
vIt->second = version;
141142
}
142143
}

ydb/core/tx/schemeshard/ut_olap/ut_olap.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,9 @@ Y_UNIT_TEST_SUITE(TOlap) {
426426

427427
Y_UNIT_TEST(CreateTableTtl) {
428428
TTestBasicRuntime runtime;
429-
TTestEnv env(runtime);
429+
TTestEnvOptions options;
430+
options.EnableTieringInColumnShard(true);
431+
TTestEnv env(runtime, options);
430432
ui64 txId = 100;
431433

432434
TestCreateOlapStore(runtime, ++txId, "/MyRoot", defaultStoreSchema);

0 commit comments

Comments
 (0)