diff --git a/ydb/core/tx/schemeshard/schemeshard__operation_alter_sequence.cpp b/ydb/core/tx/schemeshard/schemeshard__operation_alter_sequence.cpp index 45ce775f7baa..e4d1319f195f 100644 --- a/ydb/core/tx/schemeshard/schemeshard__operation_alter_sequence.cpp +++ b/ydb/core/tx/schemeshard/schemeshard__operation_alter_sequence.cpp @@ -246,7 +246,7 @@ std::optional GetAlterSequenceDescription errStr = Sprintf("MINVALUE (%ld) must be less than MAXVALUE (%ld)", minValue, maxValue); status = NKikimrScheme::StatusInvalidParameter; return std::nullopt; - } + } i64 startValue = result.GetStartValue(); if (alter.HasStartValue()) { @@ -257,12 +257,12 @@ std::optional GetAlterSequenceDescription errStr = Sprintf("START value (%ld) cannot be greater than MAXVALUE (%ld)", startValue, maxValue); status = NKikimrScheme::StatusInvalidParameter; return std::nullopt; - } + } if (startValue < minValue) { errStr = Sprintf("START value (%ld) cannot be less than MINVALUE (%ld)", startValue, minValue); status = NKikimrScheme::StatusInvalidParameter; return std::nullopt; - } + } i64 increment = result.GetIncrement(); if (alter.HasIncrement()) {