Skip to content

Commit fc7860a

Browse files
committed
fix
1 parent 2fcf844 commit fc7860a

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ydb/core/kqp/topics/kqp_topics.cpp

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,9 @@ std::pair<ui64, ui64> TConsumerOperations::GetOffsetsCommitRange() const
3636

3737
if (Offsets_.Empty()) {
3838
return {0,0};
39-
} else return {Offsets_.Min(), Offsets_.Max()};
39+
} else {
40+
return {Offsets_.Min(), Offsets_.Max()};
41+
}
4042
}
4143

4244
bool TConsumerOperations::GetForceCommit() const

0 commit comments

Comments
 (0)