Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ivanmorozov333 committed Nov 25, 2024
1 parent 8c9ccea commit 362e3a5
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,10 @@ class TNormalForm {
std::shared_ptr<TDataForIndexesCheckers> TDataForIndexesCheckers::Build(const TProgramContainer& program) {
AFL_DEBUG(NKikimrServices::TX_COLUMNSHARD)("program", program.DebugString());
auto& steps = program.GetStepsVerified();
AFL_VERIFY(steps.size());
if (!steps.size()) {
AFL_WARN(NKikimrServices::TX_COLUMNSHARD)("event", "no_steps_in_program");
return nullptr;
}
auto fStep = steps.front();
TNormalForm nForm;
for (auto&& s : fStep->GetAssignes()) {
Expand Down

0 comments on commit 362e3a5

Please sign in to comment.