We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 31ab427 commit f1fa2ceCopy full SHA for f1fa2ce
ydb/core/tx/columnshard/engines/ut/ut_logs_engine.cpp
@@ -97,7 +97,11 @@ class TTestDbWrapper : public IDbWrapper {
97
Y_ABORT_UNLESS(portion.GetPathId() == it->second.GetPathId() && portion.GetPortion() == it->second.GetPortion());
98
}
99
it->second.SetMinSnapshot(portion.GetMinSnapshot());
100
- it->second.SetRemoveSnapshot(portion.GetRemoveSnapshot());
+ if (portion.HasRemoveSnapshot()) {
101
+ it->second.SetRemoveSnapshot(portion.GetRemoveSnapshotVerified());
102
+ } else {
103
+ AFL_VERIFY(!it->second.HasRemoveSnapshot());
104
+ }
105
106
bool replaced = false;
107
for (auto& rec : it->second.Records) {
0 commit comments